remove "stream: " for matching with python 2.x syntax

This commit is contained in:
Linus 2019-07-21 09:25:33 +12:00
parent e742bfced2
commit 00a8f4f79a

View File

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