You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When using L1Q 2.23.0 for wmiqc, we get a RuntimeError: dictionary changed size during iteration. line 44, in _showwarning in laboneq/controller/laboneq_logging.py.
We can hotfix this at the moment by casting the returned object to tuple or list, i.e. we change (line 44 in laboneq_logging.py)
formodname, moduleinsys.modules.items():
to
formodname, moduleintuple(sys.modules.items()):
Versions used:
laboneq: 2.23.0
zhinst-core: 23.10.52579
wmiqc: 0.57.4
Context
Do you know a workaround for the issue? If yes, please provide a short description -> see above
Does the issue block your experiments? -> Yes, but we can fix it ourselves.
The text was updated successfully, but these errors were encountered:
Describe the bug
When using L1Q 2.23.0 for wmiqc, we get a
RuntimeError: dictionary changed size during iteration.
line 44, in _showwarning in laboneq/controller/laboneq_logging.py.We can hotfix this at the moment by casting the returned object to tuple or list, i.e. we change (line 44 in laboneq_logging.py)
to
Versions used:
Context
The text was updated successfully, but these errors were encountered: