(self, server: Server)
| 88 | SUPPORTED_API = ["0.5", "0.6", "0.7", "0.8", "0.9", "0.10", "0.11"] |
| 89 | |
| 90 | def __init__(self, server: Server): |
| 91 | PluginLoader.__init__(self, server) |
| 92 | self._invalidate_caches() |
| 93 | self._plugins = [] |
| 94 | |
| 95 | def _invalidate_caches(self): |
| 96 | importlib.invalidate_caches() |
nothing calls this directly
no test coverage detected