Skip to content

Commit

Permalink
fix: entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day committed Apr 24, 2024
1 parent 36309cd commit 67b3e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def commands(self) -> Dict:
if self._commands:
return self._commands

eps: Iterable = entry_points().get(self._CLI_GROUP_NAME, [])
eps: Iterable = entry_points(group=self._CLI_GROUP_NAME)
self._commands = {clean_plugin_name(cmd.name): cmd.load for cmd in eps}
return self._commands

Expand Down

0 comments on commit 67b3e90

Please sign in to comment.