From abd7b89b71c810fbc69c4c58229792b952982c0c Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 18 Jan 2026 12:10:35 +0300 Subject: [PATCH] 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 --- tests/test_issue_219_e2e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_issue_219_e2e.py b/tests/test_issue_219_e2e.py index aea741f..46ddc39 100644 --- a/tests/test_issue_219_e2e.py +++ b/tests/test_issue_219_e2e.py @@ -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