Skip to content

Commit

Permalink
fix type hinting for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaloog committed Nov 30, 2023
1 parent 59068e1 commit 6b44fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kanban_python/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def input_ask_show_all_todos() -> bool:
)


def print_all_todos(todos: list[tuple[str, str]]) -> None:
def print_all_todos(todos: list) -> None:
pattern_dict = {pat: f"[orange3]{pat}[/]" for pat in cfg.scanned_patterns}

for i, (todo, path) in enumerate(todos, start=1):
Expand Down

0 comments on commit 6b44fce

Please sign in to comment.