remove unnecessary warning (#9243)
This commit is contained in:
parent
b7e8ef910d
commit
5059184789
@ -101,9 +101,6 @@ class NodeFactory(object):
|
|||||||
if issubclass(type(argument), Output):
|
if issubclass(type(argument), Output):
|
||||||
outputs.append(argument)
|
outputs.append(argument)
|
||||||
else:
|
else:
|
||||||
log.warning("Op arguments were passed as Node, please avoid passing arguments in "
|
|
||||||
"this manner, and pass Output(s) instead, because accepting Nodes will "
|
|
||||||
"be deprecated in a future release.")
|
|
||||||
outputs.extend(argument.outputs())
|
outputs.extend(argument.outputs())
|
||||||
return outputs
|
return outputs
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user