Skip to content

Commit

Permalink
fix : minor edit in notebook_to_html.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Jul 22, 2024
1 parent 517f8d4 commit 7d1bdcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Otherfiles/notebook_to_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"Example7",
"Example8"]

MAIN_DOC_LIS = ["Distance",
MAIN_DOCS_LIST = ["Distance",
"Document"]

NOTEBOOK_EXTENSION = ".ipynb"
Expand All @@ -41,7 +41,7 @@

print("Documents:")
print("Processing ...")
for index, notebook in enumerate(sorted(MAIN_DOC_LIS)):
for index, notebook in enumerate(sorted(MAIN_DOCS_LIST)):
notebook_path = os.path.join(
DOCUMENTS_FOLDER_PATH, notebook + NOTEBOOK_EXTENSION)
notebook_copy_path = os.path.join(
Expand Down

0 comments on commit 7d1bdcf

Please sign in to comment.