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/"):