1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 09:48:20 +08:00

Opt: Allow update without reload

This commit is contained in:
18870
2022-01-15 17:55:54 +08:00
parent 5d5ca5f299
commit 3253d9e2fc
8 changed files with 29 additions and 24 deletions

View File

@@ -178,7 +178,7 @@ class TaskHandler:
time.sleep(0.5)
def _get_thread(self) -> threading.Thread:
thread = Thread(target=self.loop)
thread = Thread(target=self.loop, daemon=True)
return thread
def start(self) -> None: