1TSnakers commited on
Commit
8ec4f90
·
verified ·
1 Parent(s): a41d64b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ if st.button("Make list"):
34
  # add pull count
35
  pull_count = []
36
  for model in library:
37
- pull_count.append(model["pull_count"])
38
 
39
  pull_count_str = []
40
  for model in library:
 
34
  # add pull count
35
  pull_count = []
36
  for model in library:
37
+ pull_count.append(int(model["pull_count"]))
38
 
39
  pull_count_str = []
40
  for model in library: