This commit is contained in:
Jesse Bannon 2023-03-15 22:53:26 -07:00
parent b97fb3b7f9
commit b95ca506f6

View file

@ -23,6 +23,7 @@ class BaseDownloaderPlugin(Plugin[BaseDownloaderOptionsT], ABC):
Plugins that get added automatically by using a downloader. Downloader options Plugins that get added automatically by using a downloader. Downloader options
are the plugin options. are the plugin options.
""" """
def __init__( def __init__(
self, self,
downloader_options: BaseDownloaderOptionsT, downloader_options: BaseDownloaderOptionsT,
@ -72,4 +73,5 @@ class BaseDownloader(DownloadArchiver, Generic[BaseDownloaderOptionsT], ABC):
) -> List[BaseDownloaderPlugin]: ) -> List[BaseDownloaderPlugin]:
"""Add these plugins from the Downloader to the subscription""" """Add these plugins from the Downloader to the subscription"""
return [] return []
# pylint: enable=unused-argument # pylint: enable=unused-argument