Skip to content

Commit 636f28d

Browse files
committed
Fix linter issues
1 parent 79a0f3b commit 636f28d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gemini-cli/todolist/src/todolist/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def show(list_name: str) -> None:
7777
render_long(status)
7878
else:
7979
if list_name.lower() == "default":
80-
print(f"You're all caught up :sparkles:")
80+
print("You're all caught up :sparkles:")
8181
else:
8282
print(f"List not found: {list_name!r}")
8383

gemini-cli/todolist/src/todolist/emojis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def find_matching_emojis(phrases: Sequence[str]) -> tuple[str | None, ...]:
3636

3737
if client := _get_client():
3838
phrases_text = "\n".join(
39-
f"{i+1}. {phrase}" for i, phrase in enumerate(phrases)
39+
f"{i + 1}. {phrase}" for i, phrase in enumerate(phrases)
4040
)
4141
user_prompt = BATCH_USER_PROMPT + f"\n\nPHRASES:\n{phrases_text}"
4242
try:

gemini-cli/todolist/src/todolist/exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datetime import datetime
55
from typing import Any, Iterator, Protocol, TypedDict
66

7-
from rich.console import Console, Text
7+
from rich.console import Console
88
from rich.markdown import Markdown
99
from rich.panel import Panel
1010

0 commit comments

Comments
 (0)