Fix import order
This commit is contained in:
parent
1189578a66
commit
b8a76e3f52
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Reference in a new issue