Use consistent mypy output spacing (#11055)

This commit is contained in:
Nikita Sobolev
2023-11-22 12:58:13 +03:00
committed by GitHub
parent e6c3219586
commit d232def6b2

View File

@@ -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)