Skip to content

Commit b0a00e0

Browse files
authored
fix: live display formatting on macOS Terminal.app (#789)
1 parent 095a935 commit b0a00e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bittensor_cli/src/commands/stake/list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def format_cell(
539539
current_block = None
540540
previous_data = None
541541

542-
with Live(console=console, screen=True, auto_refresh=True) as live:
542+
with Live(console=console, auto_refresh=True) as live:
543543
try:
544544
while True:
545545
block_hash = await subtensor.substrate.get_chain_head()

bittensor_cli/src/commands/subnets/subnets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ def format_liquidity_cell(
934934
current_block = None
935935
previous_data = None
936936

937-
with Live(console=console, screen=True, auto_refresh=True) as live:
937+
with Live(console=console, auto_refresh=True) as live:
938938
try:
939939
while True:
940940
(

0 commit comments

Comments
 (0)