In the status line, don't show the current time's seconds.

This commit is contained in:
Nahuel Lofeudo 2023-04-23 15:58:09 +01:00
parent a71862be64
commit 471794c461
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ def update_screen(updates: list[ArrivalTime]) -> None:
)
# Add the current time to the bottom line
datetime_text = "Current time: " + datetime.today().strftime("%d/%m/%Y %H:%M:%S")
datetime_text = "Current time: " + datetime.today().strftime("%d/%m/%Y %H:%M")
write_line(5, datetime_text)
def clear_screen() -> None: