Rasleen commited on
Commit
4567594
Β·
verified Β·
1 Parent(s): bd7dcdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -82,11 +82,9 @@ with about_tab:
82
  """)
83
 
84
  with app_tab:
85
- col1, col2 = st.columns(2)
86
- with col1:
87
  enable = st.checkbox("Enable camera")
88
  picture = st.camera_input("Take a picture", disabled=not enable)
89
- with col2:
90
  if picture is not None:
91
  with st.spinner("Analyzing face..."):
92
  image_pil = Image.open(picture)
 
82
  """)
83
 
84
  with app_tab:
 
 
85
  enable = st.checkbox("Enable camera")
86
  picture = st.camera_input("Take a picture", disabled=not enable)
87
+
88
  if picture is not None:
89
  with st.spinner("Analyzing face..."):
90
  image_pil = Image.open(picture)