We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b7025d commit d3d3950Copy full SHA for d3d3950
bittensor_cli/cli.py
@@ -5053,7 +5053,16 @@ def subnets_price(
5053
[green]$[/green] btcli subnets price --netuids 1,2,3,4 --html
5054
"""
5055
if json_output and html_output:
5056
- print_error("Cannot specify both `--json-output` and `--html`")
+ print_error(
5057
+ f"Cannot specify both [{COLORS.G.ARG}]--json-output[/{COLORS.G.ARG}] "
5058
+ f"and [{COLORS.G.ARG}]--html[/{COLORS.G.ARG}]"
5059
+ )
5060
+ return
5061
+ if current_only and html_output:
5062
5063
+ f"Cannot specify both [{COLORS.G.ARG}]--current[/{COLORS.G.ARG}] "
5064
5065
5066
return
5067
self.verbosity_handler(quiet=quiet, verbose=verbose, json_output=json_output)
5068
0 commit comments