From e39709a6736fc667a03aa66e795d55df65f1aa8f Mon Sep 17 00:00:00 2001 From: Conduct AI Date: Thu, 10 Sep 2026 20:11:14 -0500 Subject: [PATCH] style: remove redundant noqa on re-exported GuardDecision Ruff lint flagged this as unused because GuardDecision is re-exported via __all__. Removing the noqa satisfies ruff without changing behavior. --- litellm/proxy/guardrails/guardrail_hooks/conduct/conduct.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/guardrails/guardrail_hooks/conduct/conduct.py b/litellm/proxy/guardrails/guardrail_hooks/conduct/conduct.py index 852ecc3037c..8d010b6673e 100644 --- a/litellm/proxy/guardrails/guardrail_hooks/conduct/conduct.py +++ b/litellm/proxy/guardrails/guardrail_hooks/conduct/conduct.py @@ -38,7 +38,7 @@ try: from conduct_litellm_guard.guardrail import ( ConductGuardBlocked as ConductGuardrailBlocked, ) - from conduct_litellm_guard.guardrail import GuardDecision # noqa: F401 — re-exported + from conduct_litellm_guard.guardrail import GuardDecision _IMPORT_ERROR: ImportError | None = None except ImportError as _e: