vim-mypy icon indicating copy to clipboard operation
vim-mypy copied to clipboard

unrecognized arguments --fast-parser

Open AdrienLemaire opened this issue 5 years ago • 1 comments

Installed mypy 0.670-1 from aur and vim-mypy with plug.

Plug 'Integralist/vim-mypy', { 'for': 'python' }

Executing :Mypy I get this:

:Mypy                                                                                                                                
:!mypy --ignore-missing-imports --follow-imports=skip --fast-parser app/models/user.py
usage: mypy [-h] [-v] [-V] [more options; see below]
            [-m MODULE] [-p PACKAGE] [-c PROGRAM_TEXT] [files ...]
mypy: error: unrecognized arguments: --fast-parser

shell returned 2

AdrienLemaire avatar Apr 15 '19 05:04 AdrienLemaire

Sems like a fix was offered in 2017

https://github.com/Integralist/vim-mypy/pull/2

Is this repo dead ?

Temporary fix:

- Plug 'Integralist/vim-mypy', { 'for': 'python' }
+ Plug 'flebel/vim-mypy', { 'for': 'python', 'branch': 'bugfix/fast_parser_is_default_and_only_parser' }

AdrienLemaire avatar Apr 15 '19 05:04 AdrienLemaire