Skip to content

Commit 6c0a350

Browse files
protokoulbosd
authored andcommitted
missing os import fixed in example notebooks
1 parent 8060264 commit 6c0a350

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/hybrid-parser-step-by-step.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"outputs": [],
4747
"source": [
4848
"# Bootstrap and common imports\n",
49-
"import sys, time\n",
49+
"import sys, time, os\n",
5050
"\n",
5151
"sys.path.insert(\n",
5252
" 0, os.path.abspath(\"\")\n",

examples/parser-comparison-notebook.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"outputs": [],
3535
"source": [
3636
"# Bootstrap and common imports\n",
37-
"import sys, time\n",
37+
"import sys, time, os\n",
3838
"\n",
3939
"sys.path.insert(\n",
4040
" 0, os.path.abspath(\"\")\n",

0 commit comments

Comments
 (0)