We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9cfb73 commit ed3225eCopy full SHA for ed3225e
gemini-cli-vs-claude-code/claude-code/todo.py
@@ -23,7 +23,7 @@
23
24
def _fmt_task(task: dict) -> str:
25
status = CHECK if task["completed"] else EMPTY
26
- suffix = f" (done {task['completed_at'][:10]})" if task["completed_at"] else "" # noqa
+ suffix = f" (done {task['completed_at'][:10]})" if task["completed_at"] else "" # noqa E501
27
return f" {task['id']:>3} {status} {task['description']}{suffix}"
28
29
0 commit comments