Remove unnecessary list
This commit is contained in:
parent
5a6c30d8fd
commit
00ab6b1dc1
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ def todoist_repo_prs():
|
||||||
pr.title
|
pr.title
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
todoist.items.complete([existing_task_id])
|
todoist.items.complete(existing_task_id)
|
||||||
elif task_completed:
|
elif task_completed:
|
||||||
logger.info("Re-opening task to review '{}'".format(pr.title))
|
logger.info("Re-opening task to review '{}'".format(pr.title))
|
||||||
todoist.items.uncomplete(existing_task_id)
|
todoist.items.uncomplete(existing_task_id)
|
||||||
|
|
Reference in a new issue