From b95ca506f6e2225cd2b548cccb1dc3769d78baec Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 15 Mar 2023 22:53:26 -0700 Subject: [PATCH] lint --- src/ytdl_sub/downloaders/base_downloader.py | 2 ++ 1 file changed, 2 insertions(+) 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