Update app.py
Browse files
app.py
CHANGED
@@ -213,6 +213,5 @@ if uploaded_file is not None:
|
|
213 |
ccd = CCDData(y_pred, unit="adu", wcs=wcs)
|
214 |
# with open('predictions.zip', 'rb') as f:
|
215 |
# res = f.read()
|
216 |
-
|
217 |
-
# # # download = st.button('Download')
|
218 |
download = st.download_button(label="Download", data=ccd, file_name='prediction.fits', mime="application/octet-stream")
|
|
|
213 |
ccd = CCDData(y_pred, unit="adu", wcs=wcs)
|
214 |
# with open('predictions.zip', 'rb') as f:
|
215 |
# res = f.read()
|
216 |
+
st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
|
|
|
217 |
download = st.download_button(label="Download", data=ccd, file_name='prediction.fits', mime="application/octet-stream")
|