Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -1181,7 +1181,7 @@ def check_reagents(pdf_file_path):
|
|
| 1181 |
return reagent_errors
|
| 1182 |
|
| 1183 |
|
| 1184 |
-
|
| 1185 |
# Set page config
|
| 1186 |
st.set_page_config(
|
| 1187 |
page_title="Chemistry Text Analyzer",
|
|
@@ -1273,4 +1273,5 @@ def check_reagents(pdf_file_path):
|
|
| 1273 |
st.markdown("*Chemistry Text Analyzer - Upload your files or paste text for chemical analysis*")
|
| 1274 |
|
| 1275 |
if __name__ == "__main__":
|
| 1276 |
-
main()
|
|
|
|
|
|
| 1181 |
return reagent_errors
|
| 1182 |
|
| 1183 |
|
| 1184 |
+
def main():
|
| 1185 |
# Set page config
|
| 1186 |
st.set_page_config(
|
| 1187 |
page_title="Chemistry Text Analyzer",
|
|
|
|
| 1273 |
st.markdown("*Chemistry Text Analyzer - Upload your files or paste text for chemical analysis*")
|
| 1274 |
|
| 1275 |
if __name__ == "__main__":
|
| 1276 |
+
main()
|
| 1277 |
+
|