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]
Hi @johnfn , I tried this, and the first time it shows output in json and after that also it shows me output in json , but if I change something in the file , the it doesn't give output in json , I would have to stop the daemon and then start it again only after that it gives me output in json.
Is this the same thing that you described ?
If so , is the issue still available to pick , I would like to work on this
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: