Fix stream paramater name

This commit is contained in:
Linus 2019-07-21 09:34:19 +12:00
parent 00a8f4f79a
commit 22c9cc2f03

View File

@ -243,7 +243,7 @@ class FilterableStream(Stream):
class InputNode(Node):
"""InputNode type"""
def __init__(self, name, Stream=None, args=[], kwargs={}):
def __init__(self, name, stream, args=[], kwargs={}):
super(InputNode, self).__init__(
stream_spec=stream,
name=name,