This commit is contained in:
Paul Gauthier 2023-04-09 16:11:06 -07:00
parent 610998aafd
commit 14463700d3
2 changed files with 10 additions and 11 deletions

View file

@ -73,10 +73,12 @@ class Coder:
print()
print('='*60)
try:
inp = input('> ')
except EOFError:
return
inp = ''
while not inp.strip():
try:
inp = input('> ')
except EOFError:
return
print()