From ce8044d5a7e400bd05e2078add6cc526a2359e6e Mon Sep 17 00:00:00 2001 From: Hoffelhas Date: Tue, 10 Jan 2023 20:20:54 +0100 Subject: [PATCH] Minor update to get_all_data --- autodoist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autodoist.py b/autodoist.py index 791bd93..1fd8176 100644 --- a/autodoist.py +++ b/autodoist.py @@ -431,7 +431,7 @@ def check_for_update(current_version): # Get all data through the SYNC API. Needed to see e.g. any completed tasks. -def get_all_data(self, api): +def get_all_data(api): BASE_URL = "https://api.todoist.com" SYNC_VERSION = "v9" SYNC_API = urljoin(BASE_URL, f"/sync/{SYNC_VERSION}/")