Reyad-Ahmmed commited on
Commit
8ebb139
·
verified ·
1 Parent(s): 7d788da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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