lint
This commit is contained in:
parent
5a5b13d527
commit
a81561eaff
1 changed files with 3 additions and 1 deletions
|
|
@ -73,7 +73,9 @@ class Downloader(Generic[DownloaderOptionsT, DownloaderEntryT], ABC):
|
||||||
|
|
||||||
# If a download archive file name is provided, set it to that
|
# If a download archive file name is provided, set it to that
|
||||||
if download_archive_file_name:
|
if download_archive_file_name:
|
||||||
ytdl_options["download_archive"] = str(Path(working_directory) / download_archive_file_name)
|
ytdl_options["download_archive"] = str(
|
||||||
|
Path(working_directory) / download_archive_file_name
|
||||||
|
)
|
||||||
|
|
||||||
return ytdl_options
|
return ytdl_options
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue