🎨 Removed patcher from downloader arguments [skip ci]

This commit is contained in:
Nikhil Badyal
2023-08-23 10:06:36 +05:30
parent b2023cc5fe
commit b635e697ce
5 changed files with 11 additions and 16 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ class APP(object):
if not file_name:
extension = pathlib.Path(url).suffix
file_name = APP.generate_filename(url) + extension
Downloader(None, config).direct_download(url, file_name) # type: ignore
Downloader(config).direct_download(url, file_name)
return file_name
def download_patch_resources(self, config: RevancedConfig) -> None: