From 6dddbf3a50d16795bfdfc56d6a19fa40316385be Mon Sep 17 00:00:00 2001 From: Aneesh Sharma Date: Sat, 22 Aug 2026 14:19:31 +0530 Subject: [PATCH] fix(pricing): add noqa PLC0415 for deferred litellm import --- strix/report/pricing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strix/report/pricing.py b/strix/report/pricing.py index 57c89959..40fd01a4 100644 --- a/strix/report/pricing.py +++ b/strix/report/pricing.py @@ -10,7 +10,7 @@ from typing import Any, cast def resolve_litellm_model(model: str) -> str | None: """Return a provider-qualified model name that LiteLLM can price.""" try: - import litellm + import litellm # noqa: PLC0415 normalized = model.strip() for prefix in ("litellm/", "any-llm/", "openai/"):