pre-commit-ci-lite[bot]
3 months 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
|
|
@ -94,7 +94,7 @@ def generate_operation_id_for_path( |
|
|
return operation_id |
|
|
return operation_id |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def generate_unique_id(route: "APIRoute", method: str | None = None) -> str: |
|
|
def generate_unique_id(route: APIRoute, method: str | None = None) -> str: |
|
|
operation_id = f"{route.name}{route.path_format}" |
|
|
operation_id = f"{route.name}{route.path_format}" |
|
|
operation_id = re.sub(r"\W", "_", operation_id) |
|
|
operation_id = re.sub(r"\W", "_", operation_id) |
|
|
assert route.methods |
|
|
assert route.methods |
|
|
|