From 00a8f4f79a9a0ae36e34145b45b504cbfac84d20 Mon Sep 17 00:00:00 2001 From: Linus Date: Sun, 21 Jul 2019 09:25:33 +1200 Subject: [PATCH] remove "stream: " for matching with python 2.x syntax --- ffmpeg/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg/nodes.py b/ffmpeg/nodes.py index b7c3899..5ab3150 100644 --- a/ffmpeg/nodes.py +++ b/ffmpeg/nodes.py @@ -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,