🎨 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
@@ -10,7 +10,7 @@ from google_play_scraper.exceptions import GooglePlayScraperException
from src.exceptions import APKMirrorScrapperFailure
from src.patches import Patches
from src.utils import handle_response
from src.utils import handle_github_response
not_found_icon = "https://img.icons8.com/bubbles/500/android-os.png"
headers = {
@@ -105,7 +105,7 @@ def generate_markdown_table(data: List[List[str]]) -> str:
def main() -> None:
repo_url = "https://api.revanced.app/v2/patches/latest"
response = requests.get(repo_url)
handle_response(response)
handle_github_response(response)
parsed_data = response.json()
compatible_packages = parsed_data["patches"]