AmitT commited on
Commit
687436f
1 Parent(s): f0700dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -65,7 +65,7 @@ with st.spinner("Searching..."):
65
  emoji = emoji_df.iloc[i]
66
  # prep the text
67
  #text = f'{emoji["name"]} - '
68
- text = 'query_text '
69
  # add all of the codepoints
70
  text += ' '.join([encode_emoji(x) for x in emoji['codepoints'].split(' ')])
71
  st.write(text)
 
65
  emoji = emoji_df.iloc[i]
66
  # prep the text
67
  #text = f'{emoji["name"]} - '
68
+ text = f'{query_text} '
69
  # add all of the codepoints
70
  text += ' '.join([encode_emoji(x) for x in emoji['codepoints'].split(' ')])
71
  st.write(text)