🎨 Updated function name

This commit is contained in:
Nikhil Badyal
2023-08-22 16:52:33 +05:30
parent 70dbea76c9
commit f1873a2f85
4 changed files with 9 additions and 11 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ from src.config import RevancedConfig
from src.downloader.utils import implement_method
from src.exceptions import DownloadFailure
from src.patches import Patches
from src.utils import handle_github_response
from src.utils import handle_request_response
class Downloader(object):
@@ -55,7 +55,7 @@ class Downloader(object):
stream=True,
headers=headers,
)
handle_github_response(response)
handle_request_response(response)
total = int(response.headers.get("content-length", 0))
bar = tqdm(
desc=file_name,