aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/provider/script_host.py
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2015-06-27 17:06:57 +0200
committerDaniel Hahler <git@thequod.de>2015-07-09 13:45:25 +0200
commit07e538d58978e29556c77e1e7bccb18c6d0af60b (patch)
treecde0a8506312107bcb0e4f7aad97300ff99ab6f9 /runtime/autoload/provider/script_host.py
parent5e3212023660df60186e1cfac8d60ee4e3b026b5 (diff)
downloadrneovim-07e538d58978e29556c77e1e7bccb18c6d0af60b.tar.gz
rneovim-07e538d58978e29556c77e1e7bccb18c6d0af60b.tar.bz2
rneovim-07e538d58978e29556c77e1e7bccb18c6d0af60b.zip
python: VimPathFinder: remove unused load_module method
This method was not used, but `VimModuleLoader.load_module` is.
Diffstat (limited to 'runtime/autoload/provider/script_host.py')
-rw-r--r--runtime/autoload/provider/script_host.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/autoload/provider/script_host.py b/runtime/autoload/provider/script_host.py
index 10fd74816d..bb87f63873 100644
--- a/runtime/autoload/provider/script_host.py
+++ b/runtime/autoload/provider/script_host.py
@@ -226,10 +226,6 @@ def path_hook(nvim):
except ImportError:
return None
- @classmethod
- def load_module(cls, fullname, path=None):
- return _find_module(fullname, fullname, path or _get_paths())
-
@staticmethod
def find_spec(fullname, path=None, target=None):
"Method for Python 3.4+."