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 8d9ffc1 commit e88c8d9Copy full SHA for e88c8d9
mypy/main.py
@@ -991,7 +991,8 @@ def add_invertible_flag(
991
group=error_group,
992
)
993
add_invertible_flag(
994
- "--pretty",
+ "--no-pretty",
995
+ dest="pretty",
996
default=True,
997
help="Use visually nicer output in error messages:"
998
" Use soft word wrap, show source code snippets,"
mypy/options.py
@@ -356,7 +356,7 @@ def __init__(self) -> None:
356
self.hide_error_codes = False
357
self.show_error_code_links = False
358
# Use soft word wrap and show trimmed source snippets with error location markers.
359
- self.pretty = False
+ self.pretty = True
360
self.dump_graph = False
361
self.dump_deps = False
362
self.logical_deps = False
0 commit comments