We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4957261 commit 1f23b0eCopy full SHA for 1f23b0e
kraken/ketos/__init__.py
@@ -114,7 +114,7 @@ def cli(ctx, **kwargs):
114
115
116
for entry_point in sorted(importlib.metadata.entry_points(group='ketos.cli')):
117
- cli.add_command(entry_point.load())
+ cli.add_command(entry_point.load(), name=entry_point.name)
118
119
120
if __name__ == '__main__':
kraken/kraken.py
@@ -795,7 +795,7 @@ def get(ctx, model_id):
795
796
797
for subcommand in sorted(importlib.metadata.entry_points(group='kraken.cli')):
798
- cli.add_command(subcommand.load())
+ cli.add_command(subcommand.load(), name=subcommand.name)
799
800
801
0 commit comments