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
Hi Stef,
I am playing with some features in instamatic under simulation mode.
After I used RED data collection, an error occurred:
Traceback (most recent call last):
File "C:\Users\admin\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 1705, in __call__
return self.func(*args)
File "C:\Users\admin\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 3442, in __call__
self.__callback(self.__value, *args)
File "D:\TEM_Automation\repository\instamatic\instamatic\gui\ctrl_frame.py", line 163, in set_mode
self.ctrl.mode.set(self.var_mode.get())
AttributeError: 'str' object has no attribute 'set'
I found that in instamatic/experiments/red/experiment.py
if image_mode != 'diff':
ctrl.mode = image_mode
should be changed to:
if image_mode != 'diff':
ctrl.mode.set(image_mode)
The text was updated successfully, but these errors were encountered:
Hi Stef,
I am playing with some features in instamatic under simulation mode.
After I used RED data collection, an error occurred:
I found that in
instamatic/experiments/red/experiment.py
should be changed to:
The text was updated successfully, but these errors were encountered: