From 07e538d58978e29556c77e1e7bccb18c6d0af60b Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 27 Jun 2015 17:06:57 +0200 Subject: [PATCH] python: VimPathFinder: remove unused load_module method This method was not used, but `VimModuleLoader.load_module` is. --- runtime/autoload/provider/script_host.py | 4 ---- 1 file changed, 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+."