Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 87b287c

Browse files
authored
Merge pull request #804 from jumpstarter-dev/no-clear-console
console: do not reset console on exist
2 parents 595a7fa + cd9930c commit 87b287c

File tree

2 files changed

+0
-4
lines changed
  • packages
    • jumpstarter-driver-ble/jumpstarter_driver_ble
    • jumpstarter-driver-pyserial/jumpstarter_driver_pyserial

2 files changed

+0
-4
lines changed

packages/jumpstarter-driver-ble/jumpstarter_driver_ble/console.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ def setraw(self):
2929
yield
3030
finally:
3131
termios.tcsetattr(sys.stdin.fileno(), termios.TCSADRAIN, original)
32-
# Clear screen and move cursor to top-left (like \033c\033[2J\033[H).
33-
print("\033c\033[2J\033[H", end="")
3432

3533
async def __run(self):
3634
async with self.ble_client.stream_async(method="connect") as stream:

packages/jumpstarter-driver-pyserial/jumpstarter_driver_pyserial/console.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ def setraw(self):
2929
yield
3030
finally:
3131
termios.tcsetattr(sys.stdin.fileno(), termios.TCSADRAIN, original)
32-
# Clear screen and move cursor to top-left (like \033c\033[2J\033[H).
33-
print("\033c\033[2J\033[H", end="")
3432

3533
async def __run(self):
3634
async with self.serial_client.stream_async(method="connect") as stream:

0 commit comments

Comments
 (0)