mirror of https://github.com/zulip/zulip.git
mypy: Print out link to documentation in error output.
This should help make details about how mypy works discoverable for developers who are new to it.
This commit is contained in:
parent
f694d01a1b
commit
f5f320d5fc
|
@ -85,4 +85,8 @@ if args.daemon:
|
|||
else:
|
||||
rc = subprocess.call([mypy_command] + mypy_args)
|
||||
|
||||
if rc != 0:
|
||||
print("")
|
||||
print("See https://github.com/zulip/zulip/blob/master/docs/contributing/mypy.md for debugging tips.")
|
||||
|
||||
sys.exit(rc)
|
||||
|
|
Loading…
Reference in New Issue