We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3225e commit cf7be21Copy full SHA for cf7be21
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 E501
+ suffix = f" (done {task['completed_at'][:10]})" if task["completed_at"] else ""
27
return f" {task['id']:>3} {status} {task['description']}{suffix}"
28
29
0 commit comments