Skip to content

Commit 175b0ac

Browse files
authored
fix: ruff E401 + F541
fix: ruff E401 + F541
2 parents e2560ee + 033a22a commit 175b0ac

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
target-version = "py311"
22

33
[lint]
4-
ignore = ["E701", "E702", "E741", "F841", "F821", "B008", "F401", "F601", "E402"]
4+
ignore = ["E701", "E702", "E741", "F841", "F821", "B008", "F401", "F601", "E402", "E401"]

scripts/check_qpk_pin_consistency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131
print(f" ❌ {path}: QPK@{sha[:12]} (expected {target[:12]})")
3232
if fix:
3333
path.write_text(content.replace(sha, target))
34-
print(f" → fixed")
34+
print(" → fixed")
3535
if errors:
3636
print(f"\n{errors} mismatch(es). Run with --fix to auto-fix.")
3737
return 1

0 commit comments

Comments
 (0)