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")