[F] Remove new line after clear screen

This commit is contained in:
Azalea (on HyDEV-Daisy) 2022-06-19 16:31:00 -04:00
parent 892ed4e141
commit f86792356e
2 changed files with 4 additions and 2 deletions

View file

@ -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]: