remove unnecessary warning (#9243)

This commit is contained in:
Dawid Kożykowski 2022-01-13 14:50:56 +01:00 committed by GitHub
parent b7e8ef910d
commit 5059184789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,9 +101,6 @@ class NodeFactory(object):
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 Output(s) instead, because accepting Nodes will "
"be deprecated in a future release.")
outputs.extend(argument.outputs())
return outputs