MCPcopy
hub / github.com/eudicots/Cactus / load

Method load

cactus/plugin/loader.py:48–59  ·  view source on GitHub ↗

:returns: The list of plugins loaded by this loader.

(self)

Source from the content-addressed store, hash-verified

46 self.plugins = plugins
47
48 def load(self):
49 """
50 :returns: The list of plugins loaded by this loader.
51 """
52 plugins = []
53
54 # Load cactus internal plugins
55 for builtin_plugin in self.plugins:
56 self._initialize_plugin(builtin_plugin)
57 plugins.append(builtin_plugin)
58
59 return plugins
60
61
62class CustomPluginsLoader(BasePluginsLoader):

Callers

nothing calls this directly

Calls 1

_initialize_pluginMethod · 0.80

Tested by

no test coverage detected