Browse Source

Merge 0288a7eb59 into 8032e21418

pull/11436/merge
JD Solanki 1 day ago
committed by GitHub
parent
commit
625e61feb3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      fastapi/utils.py

2
fastapi/utils.py

@ -180,7 +180,7 @@ def generate_unique_id(route: "APIRoute") -> str:
operation_id = f"{route.name}{route.path_format}"
operation_id = re.sub(r"\W", "_", operation_id)
assert route.methods
operation_id = f"{operation_id}_{list(route.methods)[0].lower()}"
operation_id = f"{operation_id}_{next(iter(route.methods)).lower()}"
return operation_id

Loading…
Cancel
Save