From a7a0eb915ca843ed9c69dcd73960eec8201d2eff Mon Sep 17 00:00:00 2001 From: TylerCG <117808427+TylerCG@users.noreply.github.com> Date: Sun, 27 Apr 2025 20:53:16 -0400 Subject: [PATCH] Update main.py --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index ab8daf4..632428b 100644 --- a/app/main.py +++ b/app/main.py @@ -126,8 +126,8 @@ async def webpage(request: Request): global cached_data if cached_data is None: await dropoutUpdate() - html = await shows() try: + html = shows() return templates.TemplateResponse("dropout.html", {"request": request, "shows": html}) except Exception as e: return JSONResponse(status_code=500, content={"status": "error", "message": str(e)})