Created utils.py

This commit is contained in:
Sma Das
2023-04-09 20:53:32 -04:00
parent 816dc14d82
commit 41f5cd6b38

6
scripts/utils.py Normal file
View File

@@ -0,0 +1,6 @@
def clean_input(prompt: str=''):
try:
return input(prompt)
except KeyboardInterrupt:
exit(0)