Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bittensor_cli/src/bittensor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
_force_terminal = False if (_is_pytest or not sys.stdout.isatty()) else None
console = Console(no_color=_no_color, force_terminal=_force_terminal)
json_console = Console(
markup=False, highlight=False, force_terminal=False, no_color=True
markup=False, highlight=False, force_terminal=True, no_color=True
)
err_console = Console(stderr=True, no_color=_no_color, force_terminal=_force_terminal)
verbose_console = Console(
Expand Down
2 changes: 1 addition & 1 deletion bittensor_cli/src/commands/subnets/subnets.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def dict_table(subnets_, block_number_, mechanisms, ema_tao_inflow) -> dict:
tao_flow_ema = None
if netuid in ema_tao_inflow:
tao_flow_ema = ema_tao_inflow[netuid].tao
total_tao_flow_ema += tao_flow_ema.tao
total_tao_flow_ema += tao_flow_ema
subnet_rows[netuid] = {
"netuid": netuid,
"subnet_name": subnet_name,
Expand Down