diff --git a/bittensor_cli/cli.py b/bittensor_cli/cli.py index 892d56fa5..c27f33667 100755 --- a/bittensor_cli/cli.py +++ b/bittensor_cli/cli.py @@ -2345,8 +2345,8 @@ def pgp_check(s: str): twitter_url, info_, validator_id, - prompt, subnet_netuid, + prompt, ) ) diff --git a/bittensor_cli/src/commands/stake/children_hotkeys.py b/bittensor_cli/src/commands/stake/children_hotkeys.py index fc913faa9..66f25d3e3 100644 --- a/bittensor_cli/src/commands/stake/children_hotkeys.py +++ b/bittensor_cli/src/commands/stake/children_hotkeys.py @@ -299,11 +299,7 @@ async def get_total_stake_for_hk(hotkey: str, parent: bool = False): params=[hotkey], reuse_block_hash=True, ) - stake = ( - Balance.from_rao(_result) - if _result is not None - else Balance(0) - ) + stake = Balance.from_rao(_result) if _result is not None else Balance(0) if parent: console.print( f"\nYour Hotkey: [bright_magenta]{hotkey}[/bright_magenta] | Total Stake: [dark_orange]{stake}t[/dark_orange]\n",