From d232def6b2937e9b38d2549500e26967f3dc6747 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Wed, 22 Nov 2023 12:58:13 +0300 Subject: [PATCH] Use consistent mypy output spacing (#11055) --- tests/mypy_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mypy_test.py b/tests/mypy_test.py index 81ff7a81a..61b776afd 100755 --- a/tests/mypy_test.py +++ b/tests/mypy_test.py @@ -374,7 +374,7 @@ def test_stdlib(args: TestConfig) -> TestResult: if not files: return TestResult(MypyResult.SUCCESS, 0) - print(f"Testing stdlib ({len(files)} files)...", end="", flush=True) + print(f"Testing stdlib ({len(files)} files)... ", end="", flush=True) # We don't actually need pip for the stdlib testing venv_info = VenvInfo(pip_exe="", python_exe=sys.executable) result = run_mypy(args, [], files, venv_info=venv_info, testing_stdlib=True, non_types_dependencies=False)