'Refactored by Sourcery'

This commit is contained in:
Sourcery AI
2023-08-08 03:36:41 +00:00
parent b1668a96a1
commit 6b1cefadf4
7 changed files with 43 additions and 53 deletions
+1 -3
View File
@@ -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":