pre-commit-ci-lite[bot]
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
1 deletions
-
fastapi/routing.py
|
|
@ -1773,7 +1773,9 @@ class APIRouter(routing.Router): |
|
|
deprecated=( |
|
|
deprecated=( |
|
|
route.deprecated |
|
|
route.deprecated |
|
|
if route.deprecated is not None |
|
|
if route.deprecated is not None |
|
|
else self.deprecated if deprecated is None else deprecated |
|
|
else self.deprecated |
|
|
|
|
|
if deprecated is None |
|
|
|
|
|
else deprecated |
|
|
), |
|
|
), |
|
|
methods=route.methods, |
|
|
methods=route.methods, |
|
|
operation_id=route.operation_id, |
|
|
operation_id=route.operation_id, |
|
|
|