add BIAS pin type back to valid types

This commit is contained in:
Sam Crow 2023-07-19 12:15:47 -07:00
parent c67fdd8bd8
commit 2ced895b32
1 changed files with 1 additions and 1 deletions

View File

@ -737,7 +737,7 @@ class pin_spice():
inst_net is the net object from mod's nets which connects to this pin.
"""
valid_pin_types = ["INOUT", "INPUT", "OUTPUT", "POWER", "GROUND"]
valid_pin_types = ["INOUT", "INPUT", "OUTPUT", "POWER", "GROUND", "BIAS"]
def __init__(self, name, type, mod):
self.name = name