error fck
Browse files
app.py
CHANGED
|
@@ -29,7 +29,7 @@ if st.button("Make list"):
|
|
| 29 |
pull_count = [int(model["pull_count"]) for model in library]
|
| 30 |
date = [datetime.fromisoformat(model["last_updated_iso"]) for model in library]
|
| 31 |
|
| 32 |
-
total_time
|
| 33 |
|
| 34 |
st.write(f"{len(models)} models counted in {total_time}")
|
| 35 |
|
|
|
|
| 29 |
pull_count = [int(model["pull_count"]) for model in library]
|
| 30 |
date = [datetime.fromisoformat(model["last_updated_iso"]) for model in library]
|
| 31 |
|
| 32 |
+
total_time = time.time() - start_time
|
| 33 |
|
| 34 |
st.write(f"{len(models)} models counted in {total_time}")
|
| 35 |
|