Skip to content

Commit 554e067

Browse files
committed
fix: update variable name
1 parent 3929d54 commit 554e067

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/science/af3-slurm/examples/simple_ipynb_launcher/adm/slurm-rest-api-notebook.ipynb.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
"datapipeline_partition_name = \"{{ default_datapipeline_partition_name }}\"\n",
206206
"\n",
207207
"# Assign `input_file` with datapipeline input file path\n",
208-
"datapipeline_input_file= \"\" # Replace with your input file path (relative path from the jupyter notebook directory)\n"
208+
"input_file= \"\" # Replace with your input file path (relative path from the jupyter notebook directory)\n"
209209
]
210210
},
211211
{
@@ -217,7 +217,7 @@
217217
"# Submit a datapipeline job\n",
218218
"datapipeline_submit_job_response = client.submit_data_pipeline_job(\n",
219219
" partition_name=datapipeline_partition_name, \n",
220-
" input_file=datapipeline_input_file\n",
220+
" input_file=input_file\n",
221221
")\n",
222222
"print(\"Submit Job Response:\", json.dumps(datapipeline_submit_job_response,indent=4))"
223223
]

0 commit comments

Comments
 (0)