From b5f0cc5837ade721e247d5ea5b01bf2c2c0e379b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:13:49 +0000 Subject: [PATCH] fix: resolve CI linting failures by removing unused imports --- tests/test_fixes.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_fixes.py b/tests/test_fixes.py index d8c8f81..7852254 100644 --- a/tests/test_fixes.py +++ b/tests/test_fixes.py @@ -1,7 +1,5 @@ -import pytest from pathlib import Path import tempfile -import os from config_auditor.fixes import ( Fixer, @@ -84,7 +82,7 @@ class TestFixer: config_path.write_text(content) fixer = Fixer(dry_run=True) - fix_count = fixer.fix_config(config_path, "json", content) + fixer.fix_config(config_path, "json", content) actual_content = config_path.read_text() assert actual_content == content