chore: fix type checking and CI workflow (#2)

This commit is contained in:
2026-02-17 23:58:33 +02:00
committed by GitHub
parent 36f25aaff4
commit 07ab166750
6 changed files with 12 additions and 14 deletions

View File

@@ -35,7 +35,7 @@ class Scanner:
def find_workflows(self) -> list[Path]:
"""Find all workflow files."""
workflows = []
workflows: list[Path] = []
workflow_dir = self.repo_path / ".github" / "workflows"
if not workflow_dir.exists():