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 71b4c9b commit bba1353Copy full SHA for bba1353
src/dispatch/fastapi.py
@@ -258,6 +258,8 @@ async def execute(request: fastapi.Request):
258
)
259
260
logger.debug("finished handling run request with status %s", status.name)
261
- return fastapi.Response(content=response.SerializeToString(), media_type="application/proto")
+ return fastapi.Response(
262
+ content=response.SerializeToString(), media_type="application/proto"
263
+ )
264
265
return app
0 commit comments