From 38856fa223e4100c27f65c25b7339bb5ea2b0cc6 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 11 Jan 2020 13:23:17 +0000 Subject: [PATCH] Stop caching syncs --- todoist_github/clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todoist_github/clients.py b/todoist_github/clients.py index e06f69e..cbec188 100644 --- a/todoist_github/clients.py +++ b/todoist_github/clients.py @@ -3,5 +3,5 @@ import os from github import Github from todoist import TodoistAPI -todoist = TodoistAPI(os.environ["TODOIST_TOKEN"]) +todoist = TodoistAPI(os.environ["TODOIST_TOKEN"], cache=None) github = Github(os.environ["GITHUB_TOKEN"])