Use daemon = True boolean instead of setter setDaemon in CLI AutoStop thread

This commit is contained in:
Miguel Jacq 2025-03-06 16:11:02 +11:00
parent 303c83604c
commit db10da294f
No known key found for this signature in database
GPG Key ID: 59B3F0C24135C6A9

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):