python: VimPathFinder: remove unused load_module method

This method was not used, but `VimModuleLoader.load_module` is.
This commit is contained in:
Daniel Hahler 2015-06-27 17:06:57 +02:00
parent 5e32120236
commit 07e538d589

View File

@ -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+."