From 78f78cb5ea39437ffb80dd4a82f9959eef148948 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 9 Jan 2020 18:25:38 +0000 Subject: [PATCH] Actually run the tasks :facepalm: --- todoist_github/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/todoist_github/cli.py b/todoist_github/cli.py index 687eb3a..a57c482 100755 --- a/todoist_github/cli.py +++ b/todoist_github/cli.py @@ -6,6 +6,7 @@ from .tasks import ALL_TASKS def main(): for task in ALL_TASKS: print("Executing", task.__name__) + task() if __name__ == "__main__":