Spaces:
Runtime error
Runtime error
Ruben Wolhandler
commited on
Commit
·
fcb3154
1
Parent(s):
1ca6ae0
annotators
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def annotate(annotator):
|
|
25 |
|
26 |
if "annotator" not in state:
|
27 |
c = st.columns(len(Annotators))
|
28 |
-
for idx, option in enumerate(
|
29 |
c[idx].button(f"{option}", on_click=annotate, args=(option,))
|
30 |
|
31 |
if "annotations" not in state and "annotator" in state:
|
|
|
25 |
|
26 |
if "annotator" not in state:
|
27 |
c = st.columns(len(Annotators))
|
28 |
+
for idx, option in enumerate(Annotators):
|
29 |
c[idx].button(f"{option}", on_click=annotate, args=(option,))
|
30 |
|
31 |
if "annotations" not in state and "annotator" in state:
|