Skip to content

Commit

Permalink
Merge pull request #248 from opentensor/fix/thewhaleking/remove-depre…
Browse files Browse the repository at this point in the history
…cated-options

Remove deprecated Typer options
  • Loading branch information
ibraheem-opentensor authored Nov 22, 2024
2 parents 6ca679b + 8932194 commit fb51ae8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions bittensor_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ class Options:
use_password = typer.Option(
True,
help="Set this to `True` to protect the generated Bittensor key with a password.",
is_flag=True,
flag_value=False,
)
public_hex_key = typer.Option(None, help="The public key in hex format.")
ss58_address = typer.Option(
Expand Down Expand Up @@ -1843,8 +1841,6 @@ def wallet_regen_hotkey(
use_password: bool = typer.Option(
False, # Overriden to False
help="Set to 'True' to protect the generated Bittensor key with a password.",
is_flag=True,
flag_value=True,
),
quiet: bool = Options.quiet,
verbose: bool = Options.verbose,
Expand Down Expand Up @@ -1901,8 +1897,6 @@ def wallet_new_hotkey(
use_password: bool = typer.Option(
False, # Overriden to False
help="Set to 'True' to protect the generated Bittensor key with a password.",
is_flag=True,
flag_value=True,
),
quiet: bool = Options.quiet,
verbose: bool = Options.verbose,
Expand Down

0 comments on commit fb51ae8

Please sign in to comment.