Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -193,9 +193,9 @@ label_mapping = {
|
|
193 |
|
194 |
|
195 |
#Function to classify user input
|
196 |
-
def classifyTimeFrame():
|
197 |
while True:
|
198 |
-
user_input = input("Enter a command (or type 'q' to quit): ")
|
199 |
if user_input.lower() == 'q':
|
200 |
print("Exiting...")
|
201 |
break
|
|
|
193 |
|
194 |
|
195 |
#Function to classify user input
|
196 |
+
def classifyTimeFrame(user_input):
|
197 |
while True:
|
198 |
+
#user_input = input("Enter a command (or type 'q' to quit): ")
|
199 |
if user_input.lower() == 'q':
|
200 |
print("Exiting...")
|
201 |
break
|