You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dmypy only outputs in json the first time it's invoked with --output=json.
To Reproduce
dmypy stop
dmypy run -- --output=json
dmypy run -- --output=json
Expected Behavior
Every invocation returns JSON.
Actual Behavior
Only the first one does.
$ dmypy run -- --output=json
Daemon started
{"file": "myfile.py", "line": 3, "column": 0, "message": "Function is missing a type annotation", "hint": null, "code": "no-untyped-def", "severity": "error"}
$ dmypy run -- --output=json
a_different_file.py:22: error: Missing type parameters for generic type "Query" [type-arg]
Bug Report
dmypy
only outputs in json the first time it's invoked with--output=json
.To Reproduce
Expected Behavior
Every invocation returns JSON.
Actual Behavior
Only the first one does.
Your Environment
The text was updated successfully, but these errors were encountered: