Jan Vollmer
7 months ago
No known key found for this signature in database
GPG Key ID: 19473D3A5AB433DA
1 changed files with
4 additions and
0 deletions
-
fastapi/routing.py
|
|
@ -505,6 +505,10 @@ class APIRoute(routing.Route): |
|
|
|
if isinstance(status_code, IntEnum): |
|
|
|
status_code = int(status_code) |
|
|
|
self.status_code = status_code |
|
|
|
if self.response_model: |
|
|
|
assert is_body_allowed_for_status_code( |
|
|
|
status_code |
|
|
|
), f"Status code {status_code} must not have a response body" |
|
|
|
self.dependencies = list(dependencies or []) |
|
|
|
self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "") |
|
|
|
# if a "form feed" character (page break) is found in the description text, |
|
|
|