Browse Source

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

pull/12145/head
pre-commit-ci[bot] 7 months ago
parent
commit
982880694c
  1. 2
      fastapi/applications.py
  2. 2
      fastapi/routing.py

2
fastapi/applications.py

@ -823,7 +823,7 @@ class FastAPI(Starlette):
One of them will result in a 307-redirect. One of them will result in a 307-redirect.
It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth` It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth`
and `/auth/` as different routes will be treated as if `/auth` was registered twice. and `/auth/` as different routes will be treated as if `/auth` was registered twice.
This means that only the first route registered will be used. This means that only the first route registered will be used.
Therefore, ensure your route setup does not conflict unintentionally. Therefore, ensure your route setup does not conflict unintentionally.
""" """

2
fastapi/routing.py

@ -844,7 +844,7 @@ class APIRouter(routing.Router):
One of them will result in a 307-redirect. One of them will result in a 307-redirect.
It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth` It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth`
and `/auth/` as different routes will be treated as if `/auth` was registered twice. and `/auth/` as different routes will be treated as if `/auth` was registered twice.
This means that only the first route registered will be used. This means that only the first route registered will be used.
Therefore, ensure your route setup does not conflict unintentionally. Therefore, ensure your route setup does not conflict unintentionally.
""" """

Loading…
Cancel
Save