Skip to content

Commit

Permalink
Fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Aug 22, 2023
1 parent 8550c4b commit d72a132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zimscraperlib/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def handle_user_provided_file(
source: Optional[Union[pathlib.Path, str]] = None,
dest: Optional[pathlib.Path] = None,
in_dir: pathlib.Path = None,
in_dir: Optional[pathlib.Path] = None,
nocopy: bool = False,
) -> Union[pathlib.Path, None]:
"""path to downloaded or copied a user provided file (URL or path)
Expand Down

0 comments on commit d72a132

Please sign in to comment.