Skip to content

Commit

Permalink
lint: Fix supressed line text for black
Browse files Browse the repository at this point in the history
  • Loading branch information
punchagan committed Oct 1, 2024
1 parent 941bb2c commit 991fa58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def run() -> None:
description="Reformats Python code",
check_arg=["--check"],
suppress_line=lambda line: line == "All done! ✨ 🍰 ✨\n"
or re.fullmatch(r"\d+ files? would be left unchanged\.\n", line) is not None,
or re.fullmatch(r"\d+ files? left unchanged\.\n", line) is not None,
)
linter_config.external_linter(
"mypy",
Expand Down

0 comments on commit 991fa58

Please sign in to comment.