Skip to content

Commit 0aea9b2

Browse files
committed
Enable mypy --pretty mode
1 parent 9208c5e commit 0aea9b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/run_linters.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def run_isort() -> bool:
6363

6464

6565
def run_mypy() -> bool:
66-
return run_linter(["mypy", "--strict", "--python-version", "3.9", *PYTHON_SOURCES])
66+
return run_linter(
67+
["mypy", "--pretty", "--strict", "--python-version", "3.9", *PYTHON_SOURCES]
68+
)
6769

6870

6971
def main() -> None:

0 commit comments

Comments
 (0)