saritha5 commited on
Commit
6406f2a
·
1 Parent(s): 8af9793

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -124,7 +124,8 @@ else:
124
  if f is None:
125
  st.write("Please upload an image file")
126
  else:
127
- f = StringIO(f.getvalue().decode("utf-8"))
 
128
  st.write(f)
129
  image1= Image.open(f)
130
  st.image(image1,use_column_width = True)
 
124
  if f is None:
125
  st.write("Please upload an image file")
126
  else:
127
+ stringio = StringIO(f.getvalue().decode("utf-8"))
128
+ f = stringio.read()
129
  st.write(f)
130
  image1= Image.open(f)
131
  st.image(image1,use_column_width = True)