1
0

no kwargs in input

This commit is contained in:
Deven Blake 2021-05-06 09:06:44 -04:00
parent fa1d985535
commit eeffd70fe3

View File

@ -4,7 +4,7 @@ import sys
oldinput = input
def input(*args, **kwargs):
def input(*args):
message = args[0] if len(args) > 0 else ""
while 1:
try: