Shriharsh commited on
Commit
7e46dcd
·
verified ·
1 Parent(s): b792582

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -289,7 +289,7 @@ def respond_as_arka(message, chat_history):
289
  clean_message = message.strip()
290
 
291
  # 1. Check for FAQ
292
- elif clean_message in FAQ_ANSWERS:
293
  response_data = FAQ_ANSWERS[clean_message]
294
  subject = response_data['subject']
295
  body = response_data['body']
 
289
  clean_message = message.strip()
290
 
291
  # 1. Check for FAQ
292
+ if clean_message in FAQ_ANSWERS:
293
  response_data = FAQ_ANSWERS[clean_message]
294
  subject = response_data['subject']
295
  body = response_data['body']