From 3da939a38dd61717e6bc0c31a8ae17722da1f165 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:13:52 +0000 Subject: [PATCH] fix: resolve CI linting failures by removing unused imports --- tests/test_parsers.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_parsers.py b/tests/test_parsers.py index eb08f15..6859615 100644 --- a/tests/test_parsers.py +++ b/tests/test_parsers.py @@ -1,7 +1,5 @@ -import pytest from pathlib import Path import tempfile -import os from config_auditor.discovery import ConfigDiscovery from config_auditor.parsers import ParserFactory, JsonParser, YamlParser, TomlParser @@ -10,7 +8,6 @@ from config_auditor.rules import ( DeprecatedPackageRule, OutdatedVersionRule, MissingTypeCheckingRule, - SecurityVulnerabilityRule, MissingScriptsRule, PythonProjectMetaRule, )