From 1f9e2fdeccdca249fb47e7f41bb5a567158388f5 Mon Sep 17 00:00:00 2001 From: allenmylath Date: Mon, 14 Jul 2025 14:02:35 +0530 Subject: [PATCH] Update app.py misleading comment. no endpoints.py --- examples/deployment/modal-example/server/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deployment/modal-example/server/app.py b/examples/deployment/modal-example/server/app.py index ea3c22055..99f2ec44f 100644 --- a/examples/deployment/modal-example/server/app.py +++ b/examples/deployment/modal-example/server/app.py @@ -301,7 +301,7 @@ def fastapi_app(): allow_headers=["*"], ) - # Include the endpoints from endpoints.py + # Include the endpoints from this file web_app.include_router(router) return web_app