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
when using pretty = True in my [mypy] config... the output in the information window is truncated. Easy enough to just not use pretty mode... but is there a way to still have pretty mode for terminal usage?
Environment data
VS Code version:1.47.3
Extension version (available under the Extensions sidebar): v2020.7.96456
OS and version: Darwin x64 17.7.0. (10.13.6)
Python version (& distribution if applicable, e.g. Anaconda): 3.8.5 conda
Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda
Relevant/affected Python packages and their versions: mypy==0.782
Value of the python.languageServer setting: jedi
Expected behaviour
with pretty = False:
Actual behaviour
with pretty = True
Steps to reproduce:
Logs
Output with pretty = True
##########Linting Output - mypy##########
package/module.py:39:1: error: Overloaded function implementation cannot
produce return type of signature 2 [misc]
def function(
^
Output with pretty = False
##########Linting Output - mypy##########
package/module.py:39:1: error: Overloaded function implementation cannot produce return type of signature 2 [misc]
The text was updated successfully, but these errors were encountered:
@tlambert03 unfortunately we don't have a specific feature to handle this for mypy. Maybe there's a way to override it on the command-line using python.linting.mypyArgs?
Otherwise this will hopefully be solved when we get to #1577 .
when using
pretty = True
in my[mypy]
config... the output in the information window is truncated. Easy enough to just not use pretty mode... but is there a way to still have pretty mode for terminal usage?Environment data
python.languageServer
setting: jediExpected behaviour
with

pretty = False
:Actual behaviour
with

pretty = True
Steps to reproduce:
Logs
Output with pretty = True
Output with pretty = False
The text was updated successfully, but these errors were encountered: