From 13c721aab387e27855d040a534fe66f61b39df9e Mon Sep 17 00:00:00 2001 From: Matej Dujava Date: Mon, 16 Feb 2026 19:55:02 +0100 Subject: [PATCH] Fix typo: urli -> url in OpenApiRef.load_openapi Co-Authored-By: Claude Opus 4.5 Fixes: 5d98049c03f7 ("small pylint fixes") --- threescale_api_crd/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threescale_api_crd/resources.py b/threescale_api_crd/resources.py index ae5288b..c50109a 100644 --- a/threescale_api_crd/resources.py +++ b/threescale_api_crd/resources.py @@ -2284,7 +2284,7 @@ def load_openapi(entity, spec): if "url" in spec: url = spec["url"] entity["url"] = url - res = requests.get(urli, timeout=60) + res = requests.get(url, timeout=60) if url.endswith(".yaml") or url.endswith(".yml"): entity["body"] = json.dumps( yaml.load(res.content, Loader=yaml.SafeLoader)