We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 488db0e commit 0389157Copy full SHA for 0389157
packages/apps/src/microsoft/teams/apps/http_plugin.py
@@ -118,7 +118,9 @@ async def combined_lifespan(app: Starlette):
118
if server_factory:
119
self._server = server_factory(self.app)
120
if self._server.config.app is not self.app:
121
- raise ValueError("server_factory must return a uvicorn.Server configured with the provided FastAPI app instance.")
+ raise ValueError(
122
+ "server_factory must return a uvicorn.Server configured with the provided FastAPI app instance."
123
+ )
124
125
# Add JWT validation middleware
126
if app_id and not skip_auth:
0 commit comments