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 8e1ed5e commit 919217dCopy full SHA for 919217d
pynvim/compat.py
@@ -21,6 +21,7 @@ def find_module(fullname, path): # type: ignore
21
else:
22
newpath.append(element)
23
path = newpath
24
+ from imp import find_module as original_find_module
25
return original_find_module(fullname, path)
26
27
pynvim/plugin/host.py
@@ -10,7 +10,6 @@
10
from typing import Any, Sequence
11
12
from pynvim.api import Nvim, decode_if_bytes, walk
13
-from pynvim.compat import find_module
14
from pynvim.msgpack_rpc import ErrorResponse
15
from pynvim.plugin import script_host
16
from pynvim.util import format_exc_skip, get_client_info
0 commit comments