fix pin check debug typo

This commit is contained in:
Jesse Cirimelli-Low
2020-04-05 02:55:15 -07:00
parent 8b33cb519f
commit beef9441b7
+1 -1
View File
@@ -226,7 +226,7 @@ class spice():
subckt_line = list(filter(subckt.search, self.lvs))[0]
# parses line into ports and remove subckt
lvs_pins = subckt_line.split(" ")[2:]
debug.check(lvs_pins == self.pins, "LVS and spice file pin mismatch.", -1)
debug.check(lvs_pins == self.pins, "LVS and spice file pin mismatch.")
def check_net_in_spice(self, net_name):
"""Checks if a net name exists in the current. Intended to be check nets in hand-made cells."""