Skip to content

Commit 4cf7142

Browse files
committed
done
1 parent 487709c commit 4cf7142

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

streamlit_app.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def chapter_title(chapter_folder):
6161
chapters = get_chapters()
6262
chapter_index = st.selectbox("Select a chapter:", chapters)
6363

64-
chapter_title = get_chapter_title(chapter_index)
64+
chapter_title = chapter_title(chapter_index)
6565
# Display read me
6666
st.header(f"Outline of {chapter_title}")
6767
original_files, readme_files = get_readme_files(chapter_index)
@@ -72,7 +72,6 @@ def chapter_title(chapter_folder):
7272
with open(readme_files[0], "r", encoding="utf-8") as f:
7373
st.markdown(f.read())
7474

75-
7675
# Display list of Python files in selected chapter
7776
st.header(f"Algorithms in {chapter_title}")
7877
original_files, python_files = get_python_files(chapter_index)

0 commit comments

Comments
 (0)