danielle2003 commited on
Commit
0b4d311
·
verified ·
1 Parent(s): b947cd6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -586,7 +586,7 @@ if page == "Home":
586
  st.markdown(content, unsafe_allow_html=True)
587
  else:
588
  default_image_path = "load.png"
589
- with open(image_path, "rb") as image_file:
590
  encoded_image = base64.b64encode(image_file.read()).decode()
591
 
592
 
 
586
  st.markdown(content, unsafe_allow_html=True)
587
  else:
588
  default_image_path = "load.png"
589
+ with open(default_image_path, "rb") as image_file:
590
  encoded_image = base64.b64encode(image_file.read()).decode()
591
 
592