Skip to content

Commit 3c20225

Browse files
committed
Fix typo in notebooks. Use os.makedirs not os.path.makedirs
1 parent 8eeebaf commit 3c20225

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spss/interface/run_l1a_pge.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"# Make sure the output directory exists\n",
147147
"if not os.path.exists(output_path):\n",
148148
" logging.info(f\"Creating missing output directory: {output_path}\")\n",
149-
" os.path.makedirs(output_path)"
149+
" os.makedirs(output_path)"
150150
]
151151
},
152152
{

spss/interface/run_l1b_pge.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"# Make sure the output directory exists\n",
143143
"if not os.path.exists(output_path):\n",
144144
" logging.info(f\"Creating missing output directory: {output_path}\")\n",
145-
" os.path.makedirs(output_path)"
145+
" os.makedirs(output_path)"
146146
]
147147
},
148148
{

0 commit comments

Comments
 (0)