archive
/
todoist-github
Archived
1
Fork 0

Fix import order

This commit is contained in:
Jake Howard 2020-01-19 20:04:14 +00:00
parent 1189578a66
commit b8a76e3f52
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,10 @@
#!/usr/bin/env python3
import argparse
import time
import coloredlogs
import logging
import time
import coloredlogs
from .tasks import ALL_TASKS

View File

@ -1,6 +1,7 @@
import logging
from todoist_github.clients import github, todoist
from todoist_github.utils.todoist import get_relevant_todoist_tasks, pr_to_task_name
import logging
SEARCH_STRING = "is:pr review-requested:{username} archived:false"