We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b0a7a commit a6c4509Copy full SHA for a6c4509
mypy/dmypy/client.py
@@ -413,7 +413,7 @@ def show_stats(response: Mapping[str, object]) -> None:
413
if key not in ('out', 'err'):
414
print("%-24s: %10s" % (key, "%.3f" % value if isinstance(value, float) else value))
415
else:
416
- value = str(value).replace('\n', '\\n')
+ value = repr(value)[1:-1]
417
if len(value) > 50:
418
value = value[:40] + ' ...'
419
print("%-24s: %s" % (key, value))
0 commit comments