Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mecaneer23 committed Oct 28, 2023
1 parent be2efee commit 9e57e24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,9 @@ def init() -> None:
curses.init_pair(i, color, -1)


def update_modified_time(prev_time: float, todos: list[Todo]) -> tuple[list[Todo], float]:
def update_modified_time(
prev_time: float, todos: list[Todo]
) -> tuple[list[Todo], float]:
current_time = get_file_modified_time(FILENAME)
if prev_time != current_time:
todos = validate_file(read_file(FILENAME))
Expand Down
2 changes: 1 addition & 1 deletion todo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
-4 allow multiline paste
-4 allow multiline print
-4 allow wgetnstr to use multiline editing
- make startup faster
- make startup faster

0 comments on commit 9e57e24

Please sign in to comment.