1
0
mirror of https://github.com/kkroening/ffmpeg-python.git synced 2025-04-06 04:15:44 +08:00

: make linter happy

This commit is contained in:
Karl Kroening 2017-05-27 17:26:34 -10:00
parent 8d142c5fa9
commit 98d77a5261

@ -86,6 +86,7 @@ def get_args(node):
args = []
# TODO: group nodes together, e.g. `-i somefile -r somerate`.
sorted_nodes, child_map = _topo_sort(node)
del(node)
input_nodes = [node for node in sorted_nodes if isinstance(node, InputNode)]
output_nodes = [node for node in sorted_nodes if isinstance(node, OutputNode) and not
isinstance(node, GlobalNode)]