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.
run_mypy
1 parent 808528e commit 8d10764Copy full SHA for 8d10764
scripts/run_mypy.py
@@ -157,7 +157,9 @@ def check_no_unexpected_results(mypy_lines: Iterable[str]):
157
for section, sdf in df.reset_index().groupby(args.groupby):
158
print(f"\n\n[{section}]")
159
for row in sdf.itertuples():
160
- print(f"{row.file}:{row.line}: {row.type}: {row.message}")
+ print(
161
+ f"{row.file}:{row.line}: {row.type} [{row.errorcode}]: {row.message}"
162
+ )
163
print()
164
else:
165
print(
0 commit comments