Files
Auto-GPT/scripts/utils.py
2023-04-09 20:53:32 -04:00

7 lines
118 B
Python

def clean_input(prompt: str=''):
try:
return input(prompt)
except KeyboardInterrupt:
exit(0)