Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Feb 24, 2024
1 parent 71b4c9b commit bba1353
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dispatch/fastapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ async def execute(request: fastapi.Request):
)

logger.debug("finished handling run request with status %s", status.name)
return fastapi.Response(content=response.SerializeToString(), media_type="application/proto")
return fastapi.Response(
content=response.SerializeToString(), media_type="application/proto"
)

return app

0 comments on commit bba1353

Please sign in to comment.