diff --git a/main.py b/main.py index 1458bc5..1a03f90 100644 --- a/main.py +++ b/main.py @@ -15,12 +15,12 @@ app.mount('/.well-known/', StaticFiles(directory='./.well-known/')) @app.route('/app-ads.txt') -async def app_ads(req, __): +async def app_ads(req): return FileResponse('./app-ads.txt') @app.route('/robots.txt') -async def robots_txt(req, __): +async def robots_txt(req): return FileResponse('./robots.txt')