yash-b18 commited on
Commit
9f23f79
·
1 Parent(s): b9c6b05

Fixed incorrect call of method in retrieving cached information

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -45,8 +45,8 @@ st.markdown(
45
  unsafe_allow_html=True
46
  )
47
 
48
- total, ids = get_objectsWithImages()
49
- images = get_images(total, ids, limit=3)
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: