From f508e0584d09cad03236d19bd0bda97324bba5dd Mon Sep 17 00:00:00 2001 From: Ronald Cantillo <42101257+Rooyca@users.noreply.github.com> Date: Thu, 6 Jun 2024 04:55:21 -0500 Subject: [PATCH] Update routes.py --- app/routes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/routes.py b/app/routes.py index b0e8010..30c1a0f 100644 --- a/app/routes.py +++ b/app/routes.py @@ -28,9 +28,7 @@ def get_user_markdown(request: Request, username: str): # check if a file with username exists in repo try: response = requests.get(URL_REPO) - print(response) data = response.json() - print(data) for item in data: if item.get("name") == f"{username}.md": url = item.get("download_url")