From 56cb7f2ba263bd6a8458d472ddd381429e14d2a5 Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Sat, 19 Aug 2023 20:54:47 -0300 Subject: [PATCH 1/2] refactor: remove print logging --- api/backends/github.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/backends/github.py b/api/backends/github.py index f8e876a4..3faf3033 100644 --- a/api/backends/github.py +++ b/api/backends/github.py @@ -298,7 +298,6 @@ async def get_team_members(self, repository: GithubRepository) -> list[Contribut user_data_response, ) ) - print(await response.json(loads=ujson.loads)) team_members: list[Contributor] = await asyncio.gather( *map( lambda member: self.__assemble_contributor(member, team_view=True), From e40a9a609829759df8597547b74615c37c05b02c Mon Sep 17 00:00:00 2001 From: Ushie Date: Sun, 20 Aug 2023 03:06:00 +0300 Subject: [PATCH 2/2] hotfix: lowercase api owner --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 517e5cd2..b59ab1f8 100644 --- a/config.py +++ b/config.py @@ -5,7 +5,7 @@ # GitHub Backend Configuration -owner: str = "ReVanced" +owner: str = "revanced" default_repository: str = ".github" # API Versioning @@ -114,7 +114,7 @@ ] default_info: dict[str, str | list[str | bool] | bool] = { - "name": owner, + "name": "ReVanced", "about": "ReVanced was born out of Vanced's discontinuation and it is our goal to continue the legacy of what Vanced left behind. Thanks to ReVanced Patcher, it's possible to create long-lasting patches for nearly any Android app. ReVanced's patching system is designed to allow patches to work on new versions of the apps automatically with bare minimum maintenance.", "contact": {"email": "contact@revanced.app"}, "socials": social_links,