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:48 +00:00
parent a09213a46f
commit 1006c7c4f6

View File

@@ -1,4 +1,3 @@
import pytest
from click.testing import CliRunner
from pathlib import Path
import tempfile
@@ -109,7 +108,7 @@ class TestCLI:
def test_generate_unknown_template(self):
with tempfile.TemporaryDirectory() as tmpdir:
result = self.runner.invoke(cli, ["--path", tmpdir, "generate", "--template", "unknown"])
result = self.runner.invoke(cli, ["--path", tmpdir, "--template", "unknown", "generate"])
assert result.exit_code == 2
assert "Invalid value" in result.output