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.
This commit is contained in:
Conduct AI 2026-09-10 20:11:14 -05:00
parent 903a3bc588
commit e39709a673
No known key found for this signature in database

View file

@ -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: