archive
/
todoist-github
Archived
1
Fork 0

Actually run the tasks

🤦
This commit is contained in:
Jake Howard 2020-01-09 18:25:38 +00:00
parent b56d7cdb10
commit 78f78cb5ea
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ from .tasks import ALL_TASKS
def main():
for task in ALL_TASKS:
print("Executing", task.__name__)
task()
if __name__ == "__main__":