From 7638425fd93dd92b59a9914c768841bc836b625c Mon Sep 17 00:00:00 2001 From: Daniel Rojas Date: Fri, 15 Oct 2021 14:58:35 +0200 Subject: [PATCH] Remove obsolete comments --- src/wireviz/wireviz.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wireviz/wireviz.py b/src/wireviz/wireviz.py index 8d0c58b..ef4d828 100755 --- a/src/wireviz/wireviz.py +++ b/src/wireviz/wireviz.py @@ -261,8 +261,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 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]) via_name, via_pin = (designator, None) to_name, to_pin = get_single_key_and_value(entry[index_item+1])