🎨 Updated function name

This commit is contained in:
Nikhil Badyal
2023-08-10 21:47:53 +05:30
parent c9ba3f5c1c
commit 73ae6aa59d
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ from src.config import RevancedConfig
from src.downloader.utils import implement_method
from src.exceptions import PatchingFailed
from src.patches import Patches
from src.utils import handle_response
from src.utils import handle_github_response
class Downloader(object):
@@ -54,7 +54,7 @@ class Downloader(object):
stream=True,
headers=headers,
)
handle_response(response)
handle_github_response(response)
total = int(response.headers.get("content-length", 0))
bar = tqdm(
desc=file_name,