pritish commited on
Commit
70a02e1
1 Parent(s): 21bc5b0

allowed jpeg images

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ if (img_url != "") and (img_url != None):
41
 
42
 
43
  st.markdown('<center style="opacity: 70%">OR</center>', unsafe_allow_html=True)
44
- img_upload = st.file_uploader(label='Upload Image', type=['jpg', 'png'])
45
 
46
  if img_upload != None:
47
  img = img_upload.read()
 
41
 
42
 
43
  st.markdown('<center style="opacity: 70%">OR</center>', unsafe_allow_html=True)
44
+ img_upload = st.file_uploader(label='Upload Image', type=['jpg', 'png', 'jpeg'])
45
 
46
  if img_upload != None:
47
  img = img_upload.read()