From 865e3cc611b0d5777794c52dec2021adfc84d649 Mon Sep 17 00:00:00 2001 From: sudoNaji Date: Mon, 11 May 2026 12:55:19 +0500 Subject: [PATCH] Fix CodeQL #49: remove unused scan_lines import from test_scanner.py --- tests/test_scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_scanner.py b/tests/test_scanner.py index a90d151..3c0cda2 100644 --- a/tests/test_scanner.py +++ b/tests/test_scanner.py @@ -9,7 +9,7 @@ # Ensure src/ is importable sys.path.insert(0, str(Path(__file__).parent.parent / "src")) -from scanner import _mask, _shannon_entropy, scan_content, scan_lines +from scanner import _mask, _shannon_entropy, scan_content # ───────────────────────────────────────────────────────────── # Entropy helpers