pikaduck commited on
Commit
fd2ea05
·
1 Parent(s): dc54b05

Changed emoji label

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@
7
  import streamlit as st
8
 
9
  def main():
10
- emoji = st.text_input('Enter your emoji')
11
  count = int(st.number_input('Count of emoji', min_value = 1, max_value = 75, step = 1))
12
  st.write(emoji * count)
13
 
 
7
  import streamlit as st
8
 
9
  def main():
10
+ emoji = st.text_input('Enter the emoji you want string for')
11
  count = int(st.number_input('Count of emoji', min_value = 1, max_value = 75, step = 1))
12
  st.write(emoji * count)
13