This commit is contained in:
Administrator 2024-02-17 01:24:45 +03:00
parent 7ce43cf4b6
commit 2ebba22478

View File

@ -33,7 +33,8 @@ class PlatformClient:
sleep(30) sleep(30)
self.fetch() self.fetch()
Thread(target=inner, daemon=True).start() thread = Thread(target=inner, daemon=True)
thread.start()
def poll_data(self): def poll_data(self):
self.fetch(with_exception=True) self.fetch(with_exception=True)