fix: Add noqa comment to suppress ruff F401 warning for anthropic import

The anthropic import is only used to check availability, not actually used in
code. Added # noqa: F401 comment to suppress 'imported but unused' warning.

Fixes GitHub Actions ruff linting failure.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-01-18 12:10:35 +03:00
parent c8568fd429
commit abd7b89b71

View File

@@ -24,7 +24,7 @@ sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "src"))
# Check if anthropic is available
try:
import anthropic
import anthropic # noqa: F401
ANTHROPIC_AVAILABLE = True
except ImportError:
ANTHROPIC_AVAILABLE = False