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.
1 parent 5e84c75 commit 61bf6faCopy full SHA for 61bf6fa
pynvim/msgpack_rpc/event_loop/asyncio.py
@@ -23,7 +23,7 @@
23
24
loop_cls = asyncio.SelectorEventLoop
25
if os.name == 'nt':
26
- from asyncio.windows_utils import PipeHandle
+ from asyncio.windows_utils import PipeHandle # type: ignore[attr-defined]
27
import msvcrt
28
29
# On windows use ProactorEventLoop which support pipes and is backed by the
@@ -114,7 +114,7 @@ def _connect_stdio(self) -> None:
114
)
115
else:
116
pipe = os.fdopen(rename_stdout, 'wb')
117
- coroutine = self._loop.connect_write_pipe(self._fact, pipe)
+ coroutine = self._loop.connect_write_pipe(self._fact, pipe) # type: ignore[assignment]
118
self._loop.run_until_complete(coroutine)
119
debug("native stdout connection successful")
120
0 commit comments