Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -12,5 +12,5 @@ uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "png", "jpeg
|
|
12 |
|
13 |
if uploaded_file is not None:
|
14 |
img = Image.open(uploaded_file)
|
15 |
-
st.image(img, caption="Uploaded Image", use_container_width=True)
|
16 |
#st.markdown('<div class="orange-background">This is a can. You earn 0.50</div>', unsafe_allow_html=True)
|
|
|
12 |
|
13 |
if uploaded_file is not None:
|
14 |
img = Image.open(uploaded_file)
|
15 |
+
#st.image(img, caption="Uploaded Image", use_container_width=True)
|
16 |
#st.markdown('<div class="orange-background">This is a can. You earn 0.50</div>', unsafe_allow_html=True)
|