fix: resolve CI linting failures by removing unused imports
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-30 18:13:45 +00:00
parent 5be61d84ac
commit 23fef7df19

View File

@@ -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()