analist commited on
Commit
485af7c
1 Parent(s): 2ec19ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ col1, col2 = st.columns([3, 1])
9
  with col1:
10
  file = st.file_uploader('Post your picture')
11
  if file is not None:
12
- image = Image.open(image)
13
  st.image(image)
14
 
15
  with col2:
 
9
  with col1:
10
  file = st.file_uploader('Post your picture')
11
  if file is not None:
12
+ image = Image.open(file)
13
  st.image(image)
14
 
15
  with col2: