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 edfac75 commit 47924ffCopy full SHA for 47924ff
make_ipynb.py
@@ -70,7 +70,7 @@ def make_code(chapter):
70
71
# Output notebook path.
72
output_dir = Path('code/%s/' % chapter)
73
- output_dir.mkdir(exist_ok=True)
+ output_dir.mkdir(parents=True, exist_ok=True)
74
path = (output_dir / file.name).with_suffix('.ipynb')
75
76
# Export the AST into a Jupyter notebook.
0 commit comments