diff --git a/fastapi/applications.py b/fastapi/applications.py index a2fc33f0e..ab9176c14 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -1133,11 +1133,9 @@ class FastAPI(Starlette): scope["root_path"] = self.root_path await super().__call__(scope, receive, send) - def mount(self, path: str, app: ASGIApp, name: str | None = None) -> None: self.router._mount(path, app=app, name=name) - def add_api_route( self, path: str,