Merge pull request #73 from ReVanced/dev

This commit is contained in:
Ushie 2023-08-20 03:06:35 +03:00 committed by GitHub
commit f4a578d988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -298,7 +298,6 @@ class Github(Backend):
user_data_response, user_data_response,
) )
) )
print(await response.json(loads=ujson.loads))
team_members: list[Contributor] = await asyncio.gather( team_members: list[Contributor] = await asyncio.gather(
*map( *map(
lambda member: self.__assemble_contributor(member, team_view=True), lambda member: self.__assemble_contributor(member, team_view=True),

View File

@ -5,7 +5,7 @@ redis: dict[str, str | int] = {"host": "localhost", "port": 6379}
# GitHub Backend Configuration # GitHub Backend Configuration
owner: str = "ReVanced" owner: str = "revanced"
default_repository: str = ".github" default_repository: str = ".github"
# API Versioning # API Versioning
@ -114,7 +114,7 @@ links: list[dict[str, str | bool]] = [
] ]
default_info: dict[str, str | list[str | bool] | bool] = { 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.", "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"}, "contact": {"email": "contact@revanced.app"},
"socials": social_links, "socials": social_links,