Skip to content

Commit

Permalink
Remove quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
blesniewski committed Sep 1, 2021
1 parent fdfe186 commit a3fdd2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ngraph/python/src/ngraph/utils/node_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ def _arguments_as_outputs(arguments: List[Union[Node, Output]]) -> List[Output]:
if issubclass(type(argument), Output):
outputs.append(argument)
else:
log.warning('Op arguments were passed as \'Node\', please avoid passing arguments in this manner, '
'and pass \'Outputs\' instead, because accepting \'Nodes\' will be deprecated in a '
'future release.')
log.warning('Op arguments were passed as Node, please avoid passing arguments in '
'this manner, and pass Outputs instead, because accepting Nodes will '
'be deprecated in a future release.')
outputs.extend(argument.outputs())
return outputs

Expand Down

0 comments on commit a3fdd2b

Please sign in to comment.