diff --git a/src/ytdl_sub/downloaders/base_downloader.py b/src/ytdl_sub/downloaders/base_downloader.py index 656eeb82..73759af0 100644 --- a/src/ytdl_sub/downloaders/base_downloader.py +++ b/src/ytdl_sub/downloaders/base_downloader.py @@ -23,6 +23,7 @@ class BaseDownloaderPlugin(Plugin[BaseDownloaderOptionsT], ABC): Plugins that get added automatically by using a downloader. Downloader options are the plugin options. """ + def __init__( self, downloader_options: BaseDownloaderOptionsT, @@ -72,4 +73,5 @@ class BaseDownloader(DownloadArchiver, Generic[BaseDownloaderOptionsT], ABC): ) -> List[BaseDownloaderPlugin]: """Add these plugins from the Downloader to the subscription""" return [] + # pylint: enable=unused-argument