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 866365e commit 1af1b90Copy full SHA for 1af1b90
bittensor_cli/src/commands/sudo.py
@@ -671,7 +671,8 @@ async def get_hyperparameters(
671
dict_out = []
672
673
normalized_values = normalize_hyperparameters(subnet, json_output=json_output)
674
- for param, value, norm_value in normalized_values:
+ sorted_values = sorted(normalized_values, key=lambda x: x[0])
675
+ for param, value, norm_value in sorted_values:
676
if not json_output:
677
table.add_row(" " + param, value, norm_value)
678
else:
0 commit comments