Browse Source

🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

pull/13525/head
pre-commit-ci[bot] 2 weeks ago
parent
commit
9d0442f2bd
  1. 4
      docs/en/docs/tutorial/middleware.md
  2. 1
      tests/test_tutorial/test_middleware/test_tutorial001.py

4
docs/en/docs/tutorial/middleware.md

@ -67,9 +67,9 @@ Here we use <a href="https://docs.python.org/3/library/time.html#time.perf_count
## HTTP Middleware
As you noticed the decorator `@app.middleware('http')` contains a parameter called `http`.
As you noticed the decorator `@app.middleware('http')` contains a parameter called `http`.
This parameter defines the type of server events to be handled by the middleware.
This parameter defines the type of server events to be handled by the middleware.
ASGI server supports the following scope types (or event types): `lifespan`, `http`, and `websocket`.

1
tests/test_tutorial/test_middleware/test_tutorial001.py

@ -14,4 +14,3 @@ def test_add_process_time_header_middleware():
# request/response process time
process_time = response.headers["X-Process-Time"]
assert float(process_time) > 0

Loading…
Cancel
Save