From 23fef7df19e02dfc4e62f769817056c502073622 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:13:45 +0000 Subject: [PATCH] fix: resolve CI linting failures by removing unused imports --- config_auditor/cli.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/config_auditor/cli.py b/config_auditor/cli.py index 805114b..d2b2d9b 100644 --- a/config_auditor/cli.py +++ b/config_auditor/cli.py @@ -201,10 +201,8 @@ def generate(ctx: click.Context, template: Optional[str]): @cli.command() @click.pass_context -def config(ctx: click Context): +def config(ctx: click.Context): """Show current configuration.""" - import yaml - config_path = Path("config.yaml") if config_path.exists(): content = config_path.read_text()