diff --git a/pyproject.toml b/pyproject.toml index 221f19f..f64bdba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,7 @@ pythonpath = [ testpaths = ["tests"] [tool.ruff] -ignore = ["E701", "E702", "E741", "F841", "F821", "B008", "F401", "F601", "E402"] +ignore = ["E701", "E702", "E741", "F841", "F821", "B008", "F401", "F601", "E402", "E401"] target-version = "py311" line-length = 100 diff --git a/scripts/check_qpk_pin_consistency.py b/scripts/check_qpk_pin_consistency.py index ad435c6..360f881 100644 --- a/scripts/check_qpk_pin_consistency.py +++ b/scripts/check_qpk_pin_consistency.py @@ -31,7 +31,7 @@ def main(): print(f" ❌ {path}: QPK@{sha[:12]} (expected {target[:12]})") if fix: path.write_text(content.replace(sha, target)) - print(f" → fixed") + print(" → fixed") if errors: print(f"\n{errors} mismatch(es). Run with --fix to auto-fix.") return 1