analist commited on
Commit
9c8e750
·
1 Parent(s): 8477de0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -30,13 +30,8 @@ with col1:
30
 
31
  st.subheader('New image')
32
  st.image(img, caption=f'Upscaled {choice} times image')
33
- st.download_button('Download', img)
34
 
35
  else:
36
  st.text('Not supported yet. Comeback soon for fun releases')
37
-
38
-
39
-
40
-
41
-
42
 
 
30
 
31
  st.subheader('New image')
32
  st.image(img, caption=f'Upscaled {choice} times image')
33
+ st.download_button(label="Download image", data=img, file_name="upscaled.png", mime="image/png")
34
 
35
  else:
36
  st.text('Not supported yet. Comeback soon for fun releases')
 
 
 
 
 
37