Skip to content

Commit

Permalink
update notebook converter to only pick up notebooks in features folder
Browse files Browse the repository at this point in the history
  • Loading branch information
serena-ruan committed Aug 18, 2022
1 parent 641dd45 commit 8ff0bf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/notebookconvert.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def convert_allnotebooks_in_folder(folder, outputdir):

def main():
cur_path = os.getcwd()
folder = os.path.join(cur_path, "notebooks")
outputdir = os.path.join(cur_path, "website", "docs")
folder = os.path.join(cur_path, "notebooks", "features")
outputdir = os.path.join(cur_path, "website", "docs", "features")
convert_allnotebooks_in_folder(folder, outputdir)


Expand Down

0 comments on commit 8ff0bf5

Please sign in to comment.