Skip to content

Commit

Permalink
removed arg
Browse files Browse the repository at this point in the history
  • Loading branch information
fullerzz committed Nov 9, 2024
1 parent da22d2c commit b3a1cae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bin/test_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async def index() -> Response:


@app.post("/foo")
async def post_foo(request: Request) -> Response:
async def post_foo() -> Response:
resp = jsonify({"foo": "bar"})
resp.headers["X-Test"] = "Test"
return resp
Expand Down

0 comments on commit b3a1cae

Please sign in to comment.