Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/6775.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bug located in primitives circuit module
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@ def refresh_all_ids(self):
o.schematic_id = int(name[1].split(":")[0])
objID = int(o.schematic_id)
else:
o.id = int(name[1])
o.id = int(name[1]) if name[1].isdigit() else name[1]
o.schematic_id = name[2]
objID = int(o.schematic_id)

Expand Down
Loading