mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Expand unclear one-line implicit conditional statement
This commit is contained in:
parent
df9bd7316f
commit
ea90d91dfe
@ -1,7 +1,4 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import warnings
|
|
||||||
|
|
||||||
from .dag import KwargReprNode
|
from .dag import KwargReprNode
|
||||||
from ._utils import escape_chars, get_hash_int
|
from ._utils import escape_chars, get_hash_int
|
||||||
from builtins import object
|
from builtins import object
|
||||||
@ -199,7 +196,11 @@ class Node(KwargReprNode):
|
|||||||
# "1+" is for `self`
|
# "1+" is for `self`
|
||||||
argc = 1 + len(args) + len(kwargs)
|
argc = 1 + len(args) + len(kwargs)
|
||||||
|
|
||||||
first_arg = "old_node" in kwargs and kwargs["old_node"] or args[0]
|
first_arg = None
|
||||||
|
if "old_node" in kwargs:
|
||||||
|
first_arg = kwargs["old_node"]
|
||||||
|
elif len(args) > 0:
|
||||||
|
first_arg = args[0]
|
||||||
|
|
||||||
if argc == _get_arg_count(self.__init_fromnode__) and type(first_arg) == type(self):
|
if argc == _get_arg_count(self.__init_fromnode__) and type(first_arg) == type(self):
|
||||||
self.__init_fromnode__(*args, **kwargs)
|
self.__init_fromnode__(*args, **kwargs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user