1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-28 16:50:01 +02:00

fix oneshot command type signature

This commit is contained in:
apkallum
2020-09-09 14:29:41 -04:00
committed by Cristian Vargas
parent 95157427c2
commit 1aa7bac85b

View File

@@ -54,7 +54,7 @@ def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional
oneshot(
url=stdin_url or url,
out_dir=str(Path(command.out_dir).resolve()),
out_dir=Path(command.out_dir).resolve(),
)