diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ab2b556..b201051 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: # MyPy for static type checking - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.16.0 + rev: v1.17.1 hooks: - id: mypy additional_dependencies: [ diff --git a/strix/report/writer.py b/strix/report/writer.py index 27ed379..a7db162 100644 --- a/strix/report/writer.py +++ b/strix/report/writer.py @@ -69,7 +69,7 @@ def write_vulnerabilities( vulnerability_reports, key=lambda r: (_SEVERITY_ORDER.get(r["severity"], 5), r["timestamp"]), ) - csv_path = run_dir / "vulnerabilities.csv" + csv_path = run_dir / "vulnerabilities.csv" csv_buf = io.StringIO() fieldnames = ["id", "title", "severity", "timestamp", "file"] csv_writer = csv.DictWriter(csv_buf, fieldnames=fieldnames, lineterminator="\r\n")