Skip to content

Commit

Permalink
Merge branch 'master' of github.com:paulscherrerinstitute/pcaspy
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoqiangwang committed Mar 15, 2024
2 parents 7ec8602 + 741327a commit 658dca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcaspy/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ def __init__(self, name, info):
# scan thread
if self.info.scan > 0:
self.tid = threading.Thread(target=self.scan)
self.tid.setDaemon(True)
self.tid.daemon = True
self.tid.start()

def scan(self):
Expand Down

0 comments on commit 658dca6

Please sign in to comment.