Remove obsolete comments

This commit is contained in:
Daniel Rojas 2021-10-15 14:58:35 +02:00
parent 3a181f6f95
commit 3c6b902867

View File

@ -258,8 +258,6 @@ def parse(yaml_data: Dict, file_out: (str, Path) = None, return_types: (None, st
elif index_item == len(entry) - 1: # list ends with an arrow elif index_item == len(entry) - 1: # list ends with an arrow
raise Exception('An arrow cannot be at the end of a connection set') raise Exception('An arrow cannot be at the end of a connection set')
# self.connectors[from_name].pins.index(from_pin)
# import pudb; pu.db
from_name, from_pin = get_single_key_and_value(entry[index_item-1]) from_name, from_pin = get_single_key_and_value(entry[index_item-1])
via_name, via_pin = (designator, None) via_name, via_pin = (designator, None)
to_name, to_pin = get_single_key_and_value(entry[index_item+1]) to_name, to_pin = get_single_key_and_value(entry[index_item+1])