From 890859b02280f4783b3da202f1802405bcc71b3e Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Thu, 7 Nov 2019 23:04:14 +0000 Subject: [PATCH] Set full_state to False --- main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.py b/main.py index d4e31ee..8ea97b2 100644 --- a/main.py +++ b/main.py @@ -52,8 +52,7 @@ async def main(): # Sync loop while True: # Sync with the server - sync_response = await client.sync(timeout=30000, full_state=True, - since=sync_token.token) + sync_response = await client.sync(timeout=30000, since=sync_token.token) # Check if the sync had an error if type(sync_response) == SyncError: