From 5f1d38282c6e5908b6614cf1258058b36c4a21bc Mon Sep 17 00:00:00 2001 From: James Smith Date: Fri, 3 Jul 2026 08:21:50 +0100 Subject: [PATCH] fix: remove unused pytest import in test_signalid_match Removed unused `import pytest` from line 5. The file uses no pytest fixtures, marks, or raises, making this import dead code and causing an F401 lint violation. Co-Authored-By: Claude Sonnet 4.6 --- tests/test_signalid_match.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_signalid_match.py b/tests/test_signalid_match.py index 2fef768..d95523c 100644 --- a/tests/test_signalid_match.py +++ b/tests/test_signalid_match.py @@ -2,8 +2,6 @@ from __future__ import annotations -import pytest - class TestLoadSignals: def test_returns_list(self):