Spaces:
Runtime error
Runtime error
add resources
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def read_markdown(path):
|
|
33 |
st.markdown(output, unsafe_allow_html=True)
|
34 |
|
35 |
st.set_page_config(page_icon=":laptop:", layout="wide")
|
36 |
-
with open(, "r") as f:
|
37 |
contents = f.read()
|
38 |
st.sidebar.markdown(contents)
|
39 |
|
|
|
33 |
st.markdown(output, unsafe_allow_html=True)
|
34 |
|
35 |
st.set_page_config(page_icon=":laptop:", layout="wide")
|
36 |
+
with open("utils/table_contents.txt", "r") as f:
|
37 |
contents = f.read()
|
38 |
st.sidebar.markdown(contents)
|
39 |
|