Nzlul commited on
Commit
b5266d8
·
1 Parent(s): b6da8f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ final_gru = tf.keras.models.load_model('model_gru')
41
  # import functions
42
  def check_chatwords(text):
43
  temp=[]
44
- for chat in text.split()
45
  if chat.upper() in chatwords:
46
  temp.append(chatwords[chat.upper()])
47
  else:
 
41
  # import functions
42
  def check_chatwords(text):
43
  temp=[]
44
+ for chat in text.split():
45
  if chat.upper() in chatwords:
46
  temp.append(chatwords[chat.upper()])
47
  else: