Skip to content

Commit

Permalink
πŸ’š Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Sep 7, 2024
1 parent 385c675 commit 34c93e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion laminci/_run_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
def run_notebooks(file_or_folder: str | Path):
import nbproject_test

nbproject_test.execute_notebooks(Path(file_or_folder), write=True)
path = Path(file_or_folder)
assert path.exists()
nbproject_test.execute_notebooks(path.resolve(), write=True)

0 comments on commit 34c93e1

Please sign in to comment.