match with python 2.x syntax

This commit is contained in:
Linus 2019-07-21 09:39:01 +12:00
parent 22c9cc2f03
commit f839009802
2 changed files with 2 additions and 2 deletions

View File

@ -344,7 +344,7 @@ class MergeOutputsNode(Node):
class HeaderNode (Node): class HeaderNode (Node):
def __init__(self, name: str = None, args=[], kwargs={}): def __init__(self, name, args=[], kwargs={}):
super(HeaderNode, self).__init__( super(HeaderNode, self).__init__(
stream_spec=None, stream_spec=None,
name=name, name=name,

View File

@ -16,7 +16,7 @@ except ImportError:
from unittest import mock # python 3 from unittest import mock # python 3
def pip_to_rtmp(url: str): def pip_to_rtmp(url):
""" Capture Facetime camera and screen in macOS and stream it to facebook """ Capture Facetime camera and screen in macOS and stream it to facebook
""" """
facetime_camera_input = ( facetime_camera_input = (