Remove commented code

This commit is contained in:
Davide Depau 2018-01-09 11:06:26 +01:00
parent 03762a5cc5
commit 1070b3e51b
No known key found for this signature in database
GPG Key ID: C7D999B6A55EFE86
2 changed files with 1 additions and 7 deletions

View File

@ -13,6 +13,7 @@ from .nodes import (
_py_map = map
def input(filename, **kwargs):
"""Input file URL (ffmpeg ``-i`` option)
@ -86,12 +87,6 @@ def map(*streams):
return head
# stream_map = get_stream_map(stream_spec)
# self.__check_input_len(stream_map, min_inputs, max_inputs)
# self.__check_input_types(stream_map, incoming_stream_types)
# incoming_edge_map = self.__get_incoming_edge_map(stream_map)
# super(Node, self).__init__(incoming_edge_map, name, args, kwargs)
# self.__outgoing_stream_type = outgoing_stream_type
__all__ = [
'input',

View File

@ -75,7 +75,6 @@ DagEdge = namedtuple('DagEdge', ['downstream_node', 'downstream_label', 'upstrea
def get_incoming_edges(downstream_node, incoming_edge_map):
edges = []
# downstream_label, (upstream_node, upstream_label) in [(i[0], i[1][:2]) for i in self.incoming_edge_map.items()]
for downstream_label, upstream_info in [(i[0], i[1]) for i in incoming_edge_map.items()]:
upstream_node, upstream_label = upstream_info[:2]
upstream_selector = None if len(upstream_info) < 3 else upstream_info[2]