The problem is not the use of = instead of :, the problem is the space between the setting name and the =, i.e., using aoi_height : 1024 would fail as well because it would be trying to set a setting with the name aoi_height (note space character at the end) instead of aoi_height.
This bug is hinted at in python-microscope/microscope#266
This configuration works:
but this one does not:
The problem is not the use of
=
instead of:
, the problem is the space between the setting name and the=
, i.e., usingaoi_height : 1024
would fail as well because it would be trying to set a setting with the nameaoi_height
(note space character at the end) instead ofaoi_height
.