g8a9 commited on
Commit
51ce81c
1 Parent(s): b0390ea
Files changed (1) hide show
  1. corpus.py +1 -1
corpus.py CHANGED
@@ -60,7 +60,7 @@ def body():
60
  "11,6,42",
61
  help="List of indices in the dataset, comma-separated.",
62
  )
63
- samples = map(int, samples_string.split(","))
64
 
65
  compute = st.button("Run")
66
 
 
60
  "11,6,42",
61
  help="List of indices in the dataset, comma-separated.",
62
  )
63
+ samples = list(map(int, samples_string.split(",")))
64
 
65
  compute = st.button("Run")
66