Remove slow printing, fix hour goals

This commit is contained in:
csd4ni3l
2025-09-07 21:45:56 +02:00
parent 389b51308d
commit a49b2f2050
2 changed files with 31 additions and 39 deletions

View File

@@ -1,15 +1,7 @@
import sys, time
import sys
from datetime import date, datetime
def slow_print(text, interval=.03):
for char in text:
sys.stdout.write(char)
sys.stdout.flush()
time.sleep(interval)
sys.stdout.write('\n')
def getchar():
try:
import msvcrt