ttcielott commited on
Commit
f059d8a
·
1 Parent(s): 901dae1

fix if clause

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ with col2:
30
  st.subheader(result)
31
  st.subheader('Pair your outfit with these colors.')
32
  st.image(sugg, width = 400)
33
- elif uploaded_file:
34
  st.image(uploaded_file, width = 400)
35
  result, sugg = predict(uploaded_file)
36
  st.subheader(result)
 
30
  st.subheader(result)
31
  st.subheader('Pair your outfit with these colors.')
32
  st.image(sugg, width = 400)
33
+ if uploaded_file:
34
  st.image(uploaded_file, width = 400)
35
  result, sugg = predict(uploaded_file)
36
  st.subheader(result)