Skip to content

Commit 708cb95

Browse files
committed
Move output_directory to be a string not a Directory object.
1 parent 1afdc88 commit 708cb95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

process.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"source": [
1414
"input_filename = [{'path': '/tmp/input_file'}] # type: stage-in\n",
1515
"line_offset = 0\n",
16-
"output_directory = [{'path': '/tmp'}]"
16+
"output_directory = \"/tmp\""
1717
]
1818
},
1919
{
@@ -23,7 +23,7 @@
2323
"metadata": {},
2424
"outputs": [],
2525
"source": [
26-
"output_filename = os.path.join(output_directory['path'], 'lines_numbered.txt')"
26+
"output_filename = os.path.join(output_directory, 'lines_numbered.txt')"
2727
]
2828
},
2929
{

0 commit comments

Comments
 (0)