comments and code cleanup

Logging, and threading cleanup
This commit is contained in:
Martin Zietz
2021-02-16 11:26:57 +01:00
parent 20f06fa837
commit fc6ca7284d
4 changed files with 93 additions and 73 deletions
+1 -1
View File
@@ -660,7 +660,7 @@ class ExecuteCSVMode(Frame):
g.threadLock = threading.Lock() # create thread locking object, used to ensure all devices switch at once later
# create separate thread to run sequence execution in:
self.csv_thread = csv.ExecCSVThread("CSV_Thread", self.sequence_array, self, self.controller)
self.csv_thread = csv.ExecCSVThread(self.sequence_array, self, self.controller)
self.csv_thread.start() # start thread
def stop_run(self):