Skip to content

Commit

Permalink
fix: fix type hints for delete_existing_files()
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed May 14, 2024
1 parent 1ff87f5 commit 522d143
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
HEADER = f"# This file is generated by `{cli_name}`."


def delete_existing_files(root: os.PathLike) -> None:
def delete_existing_files(root: str) -> None:
"""Delete any files generated by this generator.
This function can be used to clean up a directory tree before generating a new set
of files from scratch.
Parameters
----------
root : PathLike
root : str
The path (relative or absolute) to the root of the directory tree to search for files to delete.
"""
for dirpath, _, filenames in os.walk(root):
Expand Down

0 comments on commit 522d143

Please sign in to comment.