We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d90c9fe commit 0e15cf1Copy full SHA for 0e15cf1
src/dstack/_internal/server/services/plugins.py
@@ -60,7 +60,7 @@ def load_plugins(enabled_plugins: list[str]):
60
_PLUGINS.clear()
61
entrypoints: dict[str, PluginEntrypoint] = {}
62
plugins_to_load = enabled_plugins.copy()
63
- for entrypoint in entry_points(group="dstack.plugins"):
+ for entrypoint in entry_points(group="dstack.plugins"): # type: ignore[call-arg]
64
if entrypoint.name not in enabled_plugins:
65
logger.info(
66
("Found not enabled plugin %s. Plugin will not be loaded."),
0 commit comments