From ecbe29f507d176513d2b40fb7cbb40c0f45becbd Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 3 Mar 2026 09:05:07 -0600 Subject: [PATCH] fix: remove debug print(req.scope) from get_docs route (#32) Co-Authored-By: Claude Sonnet 4.6 --- app/main.py | 46 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/app/main.py b/app/main.py index 057e321..3968b19 100644 --- a/app/main.py +++ b/app/main.py @@ -6,15 +6,42 @@ from fastapi.openapi.utils import get_openapi # from fastapi.templating import Jinja2Templates from .routers_v2 import ( - current, awards, teams, rarity, cardsets, players, packtypes, packs, cards, events, results, rewards, decisions, - batstats, pitstats, notifications, paperdex, gamerewards, gauntletrewards, gauntletruns, battingcards, - battingcardratings, pitchingcards, pitchingcardratings, cardpositions, scouting, mlbplayers, stratgame, stratplays) + current, + awards, + teams, + rarity, + cardsets, + players, + packtypes, + packs, + cards, + events, + results, + rewards, + decisions, + batstats, + pitstats, + notifications, + paperdex, + gamerewards, + gauntletrewards, + gauntletruns, + battingcards, + battingcardratings, + pitchingcards, + pitchingcardratings, + cardpositions, + scouting, + mlbplayers, + stratgame, + stratplays, +) app = FastAPI( # root_path='/api', - responses={404: {'description': 'Not found'}}, - docs_url='/api/docs', - redoc_url='/api/redoc' + responses={404: {"description": "Not found"}}, + docs_url="/api/docs", + redoc_url="/api/redoc", ) # app.mount("/static", StaticFiles(directory="storage/static"), name="static") @@ -53,10 +80,11 @@ app.include_router(decisions.router) @app.get("/api/docs", include_in_schema=False) async def get_docs(req: Request): - print(req.scope) - return get_swagger_ui_html(openapi_url=req.scope.get('root_path')+'/openapi.json', title='Swagger') + return get_swagger_ui_html( + openapi_url=req.scope.get("root_path") + "/openapi.json", title="Swagger" + ) @app.get("/api/openapi.json", include_in_schema=False) async def openapi(): - return get_openapi(title='Paper Dynasty API', version=f'0.1.1', routes=app.routes) + return get_openapi(title="Paper Dynasty API", version=f"0.1.1", routes=app.routes)