From 8c5e4f0d5b8177fd53bbd1c84eae91149fd37c19 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Tue, 25 Jul 2023 12:52:20 -0700 Subject: [PATCH] param name --- src/ytdl_sub/downloaders/url/downloader.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ytdl_sub/downloaders/url/downloader.py b/src/ytdl_sub/downloaders/url/downloader.py index 8ef2b0fa..5cdf5491 100644 --- a/src/ytdl_sub/downloaders/url/downloader.py +++ b/src/ytdl_sub/downloaders/url/downloader.py @@ -155,19 +155,19 @@ class UrlDownloaderThumbnailPlugin(SourcePluginExtension): class UrlDownloaderCollectionVariablePlugin(SourcePluginExtension): def __init__( self, - downloader_options: MultiUrlSourceOptionsValidator, + options: MultiUrlSourceOptionsValidator, overrides: Overrides, enhanced_download_archive: EnhancedDownloadArchive, ): super().__init__( - options=downloader_options, + options=options, overrides=overrides, enhanced_download_archive=enhanced_download_archive, ) self._thumbnails_downloaded: Set[str] = set() self._collection_url_mapping: Dict[str, UrlValidator] = { self.overrides.apply_formatter(collection_url.url): collection_url - for collection_url in downloader_options.collection_validator.urls.list + for collection_url in options.collection_validator.urls.list } def modify_entry_metadata(self, entry: Entry) -> Optional[Entry]: