Spaces:
Sleeping
Sleeping
yash-b18 commited on
Commit ·
9f23f79
1
Parent(s): b9c6b05
Fixed incorrect call of method in retrieving cached information
Browse files
main.py
CHANGED
|
@@ -45,8 +45,8 @@ st.markdown(
|
|
| 45 |
unsafe_allow_html=True
|
| 46 |
)
|
| 47 |
|
| 48 |
-
total, ids =
|
| 49 |
-
images =
|
| 50 |
|
| 51 |
|
| 52 |
if images:
|
|
|
|
| 45 |
unsafe_allow_html=True
|
| 46 |
)
|
| 47 |
|
| 48 |
+
total, ids = cache_objectsWithImages()
|
| 49 |
+
images = cache_images(total, ids, limit=3)
|
| 50 |
|
| 51 |
|
| 52 |
if images:
|