Skip to content

Commit d72a132

Browse files
committed
Fix type hint
1 parent 8550c4b commit d72a132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zimscraperlib/inputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def handle_user_provided_file(
1717
source: Optional[Union[pathlib.Path, str]] = None,
1818
dest: Optional[pathlib.Path] = None,
19-
in_dir: pathlib.Path = None,
19+
in_dir: Optional[pathlib.Path] = None,
2020
nocopy: bool = False,
2121
) -> Union[pathlib.Path, None]:
2222
"""path to downloaded or copied a user provided file (URL or path)

0 commit comments

Comments
 (0)