Nazia Nafis commited on
Commit
93581fd
1 Parent(s): 60e0180

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ inclusions = st.text_input(label="Type in the letters in green/yellow:")
18
  st.markdown("### Exclusion Letters")
19
  exclusions = st.text_input(label="Type in the letters in grey:")
20
 
21
- if inclusions is not None:
22
  st.markdown("## List of All Possible Words")
23
  clue_result=[]
24
  for word in five_letters:
 
18
  st.markdown("### Exclusion Letters")
19
  exclusions = st.text_input(label="Type in the letters in grey:")
20
 
21
+ if len(inclusions) != 0:
22
  st.markdown("## List of All Possible Words")
23
  clue_result=[]
24
  for word in five_letters: