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 51bb9aa commit 346c297Copy full SHA for 346c297
bolt/cli/packages.py
@@ -61,13 +61,13 @@ class EntryPointGroup(click.Group):
61
def list_commands(self, ctx):
62
rv = []
63
64
- for entry_point in entry_points().get(self.ENTRYPOINT_NAME, []):
+ for entry_point in entry_points().select(group=self.ENTRYPOINT_NAME):
65
rv.append(entry_point.name)
66
67
rv.sort()
68
return rv
69
70
def get_command(self, ctx, name):
71
72
if entry_point.name == name:
73
return entry_point.load()
0 commit comments