JD Solanki
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|
|
|
|
|
|
|
|
|