python-lsp / pylsp-mypy

Mypy plugin for the Python LSP Server.
MIT License
118 stars 35 forks source link

Remove stray output from dmypy #53

Closed lieryan closed 1 year ago

lieryan commented 1 year ago

There shouldn't be any output to stdout as this will mess the message stream when pylsp is running in stdout mode.

Fix #52.

Richardk2n commented 1 year ago

Capturing the stdout for the status call would probably be sufficient, but this seems cleaner. Thanks for writing it.

lieryan commented 1 year ago

Thanks for merging the PR, @Richardk2n!