Skip to content

Commit 0e15cf1

Browse files
committed
Ignore type for entry_points
1 parent d90c9fe commit 0e15cf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dstack/_internal/server/services/plugins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def load_plugins(enabled_plugins: list[str]):
6060
_PLUGINS.clear()
6161
entrypoints: dict[str, PluginEntrypoint] = {}
6262
plugins_to_load = enabled_plugins.copy()
63-
for entrypoint in entry_points(group="dstack.plugins"):
63+
for entrypoint in entry_points(group="dstack.plugins"): # type: ignore[call-arg]
6464
if entrypoint.name not in enabled_plugins:
6565
logger.info(
6666
("Found not enabled plugin %s. Plugin will not be loaded."),

0 commit comments

Comments
 (0)