:returns: The list of plugins loaded by this loader.
(self)
| 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 | |
| 62 | class CustomPluginsLoader(BasePluginsLoader): |
nothing calls this directly
no test coverage detected