Merge pull request #2020 from onionshare/mig/thread_setdaemon_deprecated

Use daemon = True boolean instead of setter setDaemon in CLI AutoStop thread
This commit is contained in:
Saptak Sengupta 2025-03-06 12:19:56 +05:30 committed by GitHub
commit 1b0cd5440a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -614,7 +614,7 @@ class AutoStopTimer(threading.Thread):
self.common = common
self.setDaemon(True)
self.daemon = True
self.time = time
def run(self):