Skip to content

Commit

Permalink
fixed typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Nov 15, 2024
1 parent 69cd300 commit 908648b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _list_files_in_dir(path: Path) -> List[Path]:
return [x for x in path.rglob("*") if x.is_file()]


def _get_directory_state(directory: Path) -> dict[Path, Tuple[str, float]]:
def _get_directory_state(directory: Path) -> Dict[Path, Tuple[str, float]]:
return {p: _get_file_info(p) for p in _list_files_in_dir(directory)}


Expand Down

0 comments on commit 908648b

Please sign in to comment.