From 2309c037d8feff5ec76d2a2d8ca6b97220aefbef Mon Sep 17 00:00:00 2001 From: Mark McDonnell Date: Wed, 18 Jan 2017 11:28:19 +0000 Subject: [PATCH] Use correct flags --fast-parser for async/await support --ignore-missing-imports --follow-imports=skip for not following imports and causing odd errors --- autoload/mypy.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/mypy.vim b/autoload/mypy.vim index 50a33ef..b4c5805 100644 --- a/autoload/mypy.vim +++ b/autoload/mypy.vim @@ -11,5 +11,5 @@ function mypy#ExecuteMyPy() silent !clear - execute "!mypy " . bufname("%") + execute "!mypy --ignore-missing-imports --follow-imports=skip --fast-parser " . bufname("%") endfunction -- 2.45.2