File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ def __init__(self, **kwargs):
438
438
self ._ports = {}
439
439
self ._bound = False
440
440
for name , typ in kwargs .items ():
441
- self ._add (name , typ )
441
+ self .add (name , typ )
442
442
443
443
@property
444
444
def ports (self ):
@@ -498,7 +498,7 @@ def __iadd__(self, other: 'IO') -> 'IO':
498
498
self ._ports .update (other ._ports )
499
499
return self
500
500
501
- def _add (self , name , typ ):
501
+ def add (self , name , typ ):
502
502
if self ._bound :
503
503
raise RuntimeError ("Can not add to a bound IO" )
504
504
# Definition port.
@@ -565,7 +565,7 @@ def make_interface(self):
565
565
return InterfaceKind (name , (_DeclareSingletonInstanceInterface ,), dct )
566
566
567
567
def _add (self , name , typ ):
568
- super ()._add (name , typ )
568
+ super ().add (name , typ )
569
569
# Instance port.
570
570
inst_ref = LazyInstRef (name = name )
571
571
inst_port = _make_port (typ , inst_ref , flip = False )
You can’t perform that action at this time.
0 commit comments