Skip to content

Commit f1ee6ba

Browse files
committed
Actually fetch next pages with tasks from a task list
fixes #11
1 parent d068ee3 commit f1ee6ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/googleapi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def callback(_, response, exception):
290290
while next_page_token:
291291
response = fetch_tasks_request(
292292
task_list_id, completed, next_page_token
293-
)
293+
).execute()
294294
fetched_tasks += response.get("items", [])
295295
next_page_token = response.get("nextPageToken", "")
296296

0 commit comments

Comments
 (0)