From b62fca16d42857888ab6dc7a8ffcbab85f224fa9 Mon Sep 17 00:00:00 2001 From: dricottone Date: Wed, 1 May 2019 22:19:02 -0400 Subject: [PATCH] Remove --fast-parser option The parser for mypy was changed permanently. The 'fast' parser is no longer opt-in-able. (Rather, it became possible to opt-out of it.) --- .gitignore | 2 ++ autoload/mypy.vim | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6eb38f6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.mypy_cache + diff --git a/autoload/mypy.vim b/autoload/mypy.vim index b4c5805..e25040b 100644 --- a/autoload/mypy.vim +++ b/autoload/mypy.vim @@ -11,5 +11,5 @@ function mypy#ExecuteMyPy() silent !clear - execute "!mypy --ignore-missing-imports --follow-imports=skip --fast-parser " . bufname("%") + execute "!mypy --ignore-missing-imports --follow-imports=skip " . bufname("%") endfunction -- 2.45.2