Skip to content

Commit 4c9234c

Browse files
committed
SiliconPlatformPort.__len__ was broken after recent changes, fix
1 parent f40d76f commit 4c9234c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

chipflow_lib/platforms/silicon.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ def __len__(self):
131131
if self._direction is io.Direction.Input:
132132
return len(self._i)
133133
if self._direction is io.Direction.Output:
134-
assert len(self._o) == len(self._oe)
135134
return len(self._o)
136135
if self._direction is io.Direction.Bidir:
137136
assert len(self._i) == len(self._o)

0 commit comments

Comments
 (0)