We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 278e9e8 + e4174e2 commit fb278eaCopy full SHA for fb278ea
bittensor_cli/cli.py
@@ -618,6 +618,7 @@ def commands_callback(value: bool):
618
if value:
619
cli = CLIManager()
620
console.print(cli.generate_command_tree())
621
+ raise typer.Exit()
622
623
624
def debug_callback(value: bool):
@@ -1112,7 +1113,9 @@ def __init__(self):
1112
1113
"get_identity",
1114
hidden=True,
1115
)(self.wallet_get_id)
- self.wallet_app.command("associate_hotkey")(self.wallet_associate_hotkey)
1116
+ self.wallet_app.command("associate_hotkey", hidden=True)(
1117
+ self.wallet_associate_hotkey
1118
+ )
1119
1120
# Subnets
1121
self.subnets_app.command("burn_cost", hidden=True)(self.subnets_burn_cost)
0 commit comments