From 367d75d09bdea1e3f2a11c090ed15b5cb64adbc7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 28 Jul 2024 14:35:01 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- mypy/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mypy/main.py b/mypy/main.py index e95ff03b04f6..b0a5301c5c06 100644 --- a/mypy/main.py +++ b/mypy/main.py @@ -173,7 +173,9 @@ def main( ) stdout.write(summary + "\n") if n_errors >= 100 and not options.write_baseline: - stdout.write("That's a lot of errors, perhaps you would want to write an error baseline (`--write-baseline`)\n") + stdout.write( + "That's a lot of errors, perhaps you would want to write an error baseline (`--write-baseline`)\n" + ) # Only notes should also output success elif not messages or n_notes == len(messages): stdout.write(formatter.format_success(len(sources), options.color_output) + "\n")