Skip to content

Commit

Permalink
Merge branch 'tuple-order-recursive' into fix-1253
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Sep 14, 2023
2 parents ddcef99 + f1e96db commit 9e6f537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magma/tuple.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def wire(self, o, debug_info):
return

for k in self.keys():
if not type(self[k]).is_wireable(type(o[k])):
if not type(self)[k].is_wireable(type(o)[k]):
_logger.error(
WiringLog(f"Cannot wire {{}} (type={type(o)}, to "
f" {{}} (type={type(self)})"
Expand Down

0 comments on commit 9e6f537

Please sign in to comment.