mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
'Refactored by Sourcery'
This commit is contained in:
@@ -56,8 +56,7 @@ class ApkMirror(Downloader):
|
||||
f"Unable to find any apk on apkmirror_specific_version on {main_page}"
|
||||
)
|
||||
raise AppNotFound("Unable to find apk on apkmirror site.")
|
||||
download_url = self.config.apk_mirror + sub_url
|
||||
return download_url
|
||||
return self.config.apk_mirror + sub_url
|
||||
|
||||
def specific_version(self, app: str, version: str) -> None:
|
||||
"""Function to download the specified version of app from apkmirror.
|
||||
|
||||
@@ -45,9 +45,7 @@ class Downloader(object):
|
||||
headers = {}
|
||||
if self.config.personal_access_token and "github" in url:
|
||||
logger.debug("Using personal access token")
|
||||
headers.update(
|
||||
{"Authorization": "token " + self.config.personal_access_token}
|
||||
)
|
||||
headers["Authorization"] = f"token {self.config.personal_access_token}"
|
||||
response = self.config.session.get(
|
||||
url,
|
||||
stream=True,
|
||||
|
||||
@@ -24,7 +24,7 @@ class DownloaderFactory(object):
|
||||
patcher : Patcher
|
||||
config : Config
|
||||
"""
|
||||
if app == "patches" or app == "microg":
|
||||
if app in {"patches", "microg"}:
|
||||
return Github(patcher, config)
|
||||
if app in config.apk_pure:
|
||||
return ApkPure(patcher, config)
|
||||
|
||||
@@ -31,9 +31,7 @@ class Github(Downloader):
|
||||
}
|
||||
if self.config.personal_access_token:
|
||||
logger.debug("Using personal access token")
|
||||
headers.update(
|
||||
{"Authorization": "token " + self.config.personal_access_token}
|
||||
)
|
||||
headers["Authorization"] = f"token {self.config.personal_access_token}"
|
||||
response = requests.get(repo_url, headers=headers)
|
||||
handle_response(response)
|
||||
if repo_name == "revanced-patches":
|
||||
|
||||
Reference in New Issue
Block a user