From aa1a15996caaf9448cf21705ab7c3cc8286b59a5 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Sun, 14 Apr 2024 17:26:26 +0530 Subject: [PATCH] perf: instead of creating list of method use iterator Changes according to [this](https://docs.astral.sh/ruff/rules/unnecessary-iterable-allocation-for-first-element/) --- fastapi/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/utils.py b/fastapi/utils.py index 53b2fa0c3..012b71cdf 100644 --- a/fastapi/utils.py +++ b/fastapi/utils.py @@ -183,7 +183,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