client: Use a loop sleep time.

This commit is contained in:
Damir Jelić 2019-12-19 16:35:32 +01:00
parent 2853e789d3
commit d9ed67e9bf

View File

@ -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.