Skip to content

Commit

Permalink
updating missing init file for ledmatrixs
Browse files Browse the repository at this point in the history
  • Loading branch information
beniroquai committed Sep 25, 2022
1 parent fcb2b94 commit 7fb0433
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion imswitch/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():

enabledModuleIds.append(enabledModuleIds.pop(enabledModuleIds.index('imscripting')))

# use only if available
# use only if available
#if "imblockly" in enabledModuleIds:
# try:
# from imswitch import imblockly
Expand Down
2 changes: 1 addition & 1 deletion imswitch/imcontrol/controller/controllers/MCTController.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def takeTimelapse(self):

# this should decouple the hardware-related actions from the GUI - but it doesn't
self.isMCTrunning = True
self.MCTThread = threading.Thread(target=self.takeTimelapseThread, daemon=True)
self.MCTThread = threading.Thread(target=self.takeTimelapseThread, args=(), daemon=True)
self.MCTThread.start()


Expand Down
Empty file.

0 comments on commit 7fb0433

Please sign in to comment.