Skip to content

Commit

Permalink
Update src/_server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith authored May 13, 2022
1 parent c9e4031 commit bb3f330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def health() -> bool:
@app.post("/solve", response_model=SettledBatchAuctionModel)
async def solve(request: Request): # type: ignore
"""API POST solve endpoint handler"""
body = await request.json();
body = await request.json()
logging.debug(f"Received solve request {body}")

problem = BatchAuctionModel(**body)
Expand Down

0 comments on commit bb3f330

Please sign in to comment.