[F] Remove new line after clear screen
This commit is contained in:
parent
892ed4e141
commit
f86792356e
2 changed files with 4 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ def clear_screen():
|
|||
"""
|
||||
Clear screen using ANSI escape codes
|
||||
"""
|
||||
print('\033[2J\033[H')
|
||||
print('\033[2J\033[H', end='')
|
||||
|
||||
|
||||
def redistribute_rgb(r: int, g: int, b: int) -> tuple[int, int, int]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue