Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -737,4 +737,16 @@ if st.button(f"Calculate {custom_formula}"):
|
|
737 |
except Exception as e:
|
738 |
st.error(f"An error occurred during processing: {str(e)}")
|
739 |
else:
|
740 |
-
st.warning("Please upload a file to proceed.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
except Exception as e:
|
738 |
st.error(f"An error occurred during processing: {str(e)}")
|
739 |
else:
|
740 |
+
st.warning("Please upload a file to proceed.")
|
741 |
+
|
742 |
+
# Footer with developer credit
|
743 |
+
st.markdown(
|
744 |
+
"""
|
745 |
+
<hr>
|
746 |
+
<div style="text-align: center;">
|
747 |
+
<p>Developed by <a href="https://huggingface.co/YashMK89" target="_blank">YashMK89</a> |
|
748 |
+
<a href="https://huggingface.co/AgricultureLab2024" target="_blank">AgricultureLab</a></p>
|
749 |
+
</div>
|
750 |
+
""",
|
751 |
+
unsafe_allow_html=True
|
752 |
+
)
|