Skip to content

Commit

Permalink
Address PR review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhinav Arora committed Mar 15, 2018
1 parent 82dd094 commit dd5aa47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/paddle/fluid/concurrency.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def channel_send(channel, value, copy=False):
capacity=value.capacity)

assign_op = channel_send_block.append_op(
type="assign_op", inputs={"X": value, }, outputs={"Out": copied_X})
type="assign_op", inputs={"X": value}, outputs={"Out": copied_X})
X = copied_X

channel_send_op = channel_send_block.append_op(
Expand Down

0 comments on commit dd5aa47

Please sign in to comment.