Ruben Wolhandler commited on
Commit
fcb3154
·
1 Parent(s): 1ca6ae0

annotators

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(OPTIONS):
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: