We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487709c commit 4cf7142Copy full SHA for 4cf7142
streamlit_app.py
@@ -61,7 +61,7 @@ def chapter_title(chapter_folder):
61
chapters = get_chapters()
62
chapter_index = st.selectbox("Select a chapter:", chapters)
63
64
-chapter_title = get_chapter_title(chapter_index)
+chapter_title = chapter_title(chapter_index)
65
# Display read me
66
st.header(f"Outline of {chapter_title}")
67
original_files, readme_files = get_readme_files(chapter_index)
@@ -72,7 +72,6 @@ def chapter_title(chapter_folder):
72
with open(readme_files[0], "r", encoding="utf-8") as f:
73
st.markdown(f.read())
74
75
-
76
# Display list of Python files in selected chapter
77
st.header(f"Algorithms in {chapter_title}")
78
original_files, python_files = get_python_files(chapter_index)
0 commit comments