Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
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 |
|