diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2019-07-21 23:03:15 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2019-07-21 23:03:15 +0900 |
commit | 1a82c35b30f6ece215386de95794ac2ccf45c561 (patch) | |
tree | 396d210a3fdacb6afdc644bee05e965fa6e66dfc /rplugin | |
parent | 252a820335478a789d48b8ef80d5a4fe28410530 (diff) | |
download | deoplete.nvim-1a82c35b30f6ece215386de95794ac2ccf45c561.zip |
Fix mypy errors
Diffstat (limited to 'rplugin')
-rw-r--r-- | rplugin/python3/deoplete/parent.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rplugin/python3/deoplete/parent.py b/rplugin/python3/deoplete/parent.py index 2bdafb2..c7a9995 100644 --- a/rplugin/python3/deoplete/parent.py +++ b/rplugin/python3/deoplete/parent.py @@ -125,8 +125,8 @@ class AsyncParent(_Parent): info = None if os.name == 'nt': - info = subprocess.STARTUPINFO() # type: ignore - info.dwFlags |= subprocess.STARTF_USESHOWWINDOW # type: ignore + info = subprocess.STARTUPINFO() + info.dwFlags |= subprocess.STARTF_USESHOWWINDOW main = str(Path(__file__).parent.parent.parent.parent.joinpath( 'autoload', 'deoplete', '_main.py')) |