saritha5 commited on
Commit
dcd7a74
1 Parent(s): a1d60ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ if file is None:
52
  else:
53
  image= Image.open(file)
54
  st.image(image,use_column_width = True)
55
- with NamedTemporaryFile(dir='.', suffix='.csv') as f:
56
  f.write(file.getbuffer())
57
  #your_function_which_takes_a_path(f.name)
58
 
 
52
  else:
53
  image= Image.open(file)
54
  st.image(image,use_column_width = True)
55
+ with NamedTemporaryFile(dir='.', suffix='.jpeg') as f:
56
  f.write(file.getbuffer())
57
  #your_function_which_takes_a_path(f.name)
58