From d9ed67e9bf0328d9b7a6b805a097053168946feb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 19 Dec 2019 16:35:32 +0100 Subject: [PATCH] client: Use a loop sleep time. --- pantalaimon/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pantalaimon/client.py b/pantalaimon/client.py index 9581386..65ba83a 100644 --- a/pantalaimon/client.py +++ b/pantalaimon/client.py @@ -466,7 +466,7 @@ class PanClient(AsyncClient): ) await self.send_update_device(device) - def start_loop(self, loop_sleep_time=None): + def start_loop(self, loop_sleep_time=100): """Start a loop that runs forever and keeps on syncing with the server. The loop can be stopped with the stop_loop() method.