Spaces:
Running
Running
Commit
·
15d8269
1
Parent(s):
6a3ed8c
broken indent fix
Browse files
app.py
CHANGED
@@ -113,9 +113,9 @@ def start_listening():
|
|
113 |
|
114 |
|
115 |
col1, col2 = st.columns(2)
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
|
|
113 |
|
114 |
|
115 |
col1, col2 = st.columns(2)
|
116 |
+
with col1:
|
117 |
+
if st.button("Start"):
|
118 |
+
start_listening()
|
119 |
+
with col2:
|
120 |
+
if st.button("Stop"):
|
121 |
+
stop_listening()
|