willco-afk commited on
Commit
3a49c7a
·
verified ·
1 Parent(s): a5c12e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ with tab1:
33
  if uploaded_file is not None:
34
  # Display the uploaded image
35
  image = Image.open(uploaded_file)
36
- st.image(image, caption="Uploaded Image.", use_column_width=True)
37
  st.write("")
38
  st.write("Classifying...")
39
 
 
33
  if uploaded_file is not None:
34
  # Display the uploaded image
35
  image = Image.open(uploaded_file)
36
+ st.image(image, caption="Uploaded Image.", use_container_width=True) # Updated to use_container_width
37
  st.write("")
38
  st.write("Classifying...")
39