Browse Source

Include HTTP 205 in status codes with no body (#10969)

pull/10971/head
Sebastián Ramírez 1 year ago
committed by GitHub
parent
commit
dcc952d699
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      fastapi/utils.py

2
fastapi/utils.py

@ -53,7 +53,7 @@ def is_body_allowed_for_status_code(status_code: Union[int, str, None]) -> bool:
}: }:
return True return True
current_status_code = int(status_code) current_status_code = int(status_code)
return not (current_status_code < 200 or current_status_code in {204, 304}) return not (current_status_code < 200 or current_status_code in {204, 205, 304})
def get_path_param_names(path: str) -> Set[str]: def get_path_param_names(path: str) -> Set[str]:

Loading…
Cancel
Save