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 f0c6ab0 commit 5b69f54Copy full SHA for 5b69f54
neovim/plugin/script_host.py
@@ -242,9 +242,9 @@ def find_module(fullname, path=None):
242
return None
243
244
@staticmethod
245
- def find_spec(fullname, path=None, target=None):
+ def find_spec(fullname, target=None):
246
"""Method for Python 3.4+."""
247
- return PathFinder.find_spec(fullname, path or _get_paths(), target)
+ return PathFinder.find_spec(fullname, _get_paths(), target)
248
249
def hook(path):
250
if path == nvim.VIM_SPECIAL_PATH:
0 commit comments