Skip to content

Commit 121d459

Browse files
committed
Fixes duplicate param name
1 parent 73a1d97 commit 121d459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bittensor_cli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3326,7 +3326,7 @@ def wallet_set_id(
33263326
network: Optional[list[str]] = Options.network,
33273327
name: str = typer.Option(
33283328
"",
3329-
"--name",
3329+
"--id-name",
33303330
help="The display name for the identity.",
33313331
),
33323332
web_url: str = typer.Option(
@@ -6427,7 +6427,7 @@ def subnets_set_identity(
64276427
network: Optional[list[str]] = Options.network,
64286428
netuid: int = Options.netuid,
64296429
subnet_name: Optional[str] = typer.Option(
6430-
None, "--subnet-name", "--name", help="Name of the subnet"
6430+
None, "--subnet-name", "--sn-name", help="Name of the subnet"
64316431
),
64326432
github_repo: Optional[str] = typer.Option(
64336433
None, "--github-repo", "--repo", help="GitHub repository URL"

0 commit comments

Comments
 (0)