Skip to content

Commit ecac5f8

Browse files
Update README
1 parent 4275c6a commit ecac5f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

todo/tools/create_todo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ def display_create_todo(
6464
task_group: str,
6565
) -> Panel:
6666
"""Best UX: Clean table in a panel with summary."""
67-
table = Table(show_header=False, box=None, padding=(0, 1)) # Changed from (0, 0) to (0, 1)
68-
table.add_column("Status", justify="left", width=2) # Changed from width=0 to width=2
67+
table = Table(show_header=False, box=None, padding=(0, 1))
68+
table.add_column("Status", justify="left", width=2)
6969
table.add_column("Task")
7070

7171
for i, todo in enumerate(titles, 1):
@@ -75,5 +75,5 @@ def display_create_todo(
7575
table,
7676
title=f"[bold {settings.ai_color}]✓ Created {len(titles)} todos in '{task_group}'[/bold {settings.ai_color}]",
7777
border_style=settings.theme_color,
78-
padding=(1, 2) # Changed from (0, 1) to (1, 2) for better spacing
78+
padding=(1, 2)
7979
)

0 commit comments

Comments
 (0)