We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c70ca23 + d3e4991 commit e488270Copy full SHA for e488270
pyls_mypy/plugin.py
@@ -43,15 +43,15 @@ def parse_line(line, document=None):
43
def pyls_lint(config, document):
44
live_mode = config.plugin_settings('pyls_mypy').get('live_mode', True)
45
if live_mode:
46
- args = ('--incremental',
+ args = ['--incremental',
47
'--show-column-numbers',
48
'--follow-imports', 'silent',
49
- '--command', document.source)
+ '--command', document.source]
50
else:
51
52
53
54
- document.path)
+ document.path]
55
56
report, errors, _ = mypy_api.run(args)
57
0 commit comments