Skip to content

Commit 17f30ec

Browse files
authored
Aiida remove name parameter (#110)
1 parent 43d1d72 commit 17f30ec

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

example_workflows/arithmetic/aiida.ipynb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
"source": [
6464
"get_prod_and_div_task = wg.add_task(\n",
6565
" task(outputs=['prod', 'div'])(_get_prod_and_div),\n",
66-
" name=\"get_prod_and_div\",\n",
6766
" x=orm.Float(1),\n",
6867
" y=orm.Float(2),\n",
6968
")"
@@ -79,7 +78,6 @@
7978
"source": [
8079
"get_sum_task = wg.add_task(\n",
8180
" _get_sum,\n",
82-
" name=\"get_sum\",\n",
8381
" x=get_prod_and_div_task.outputs.prod,\n",
8482
" y=get_prod_and_div_task.outputs.div,\n",
8583
")"
@@ -93,7 +91,6 @@
9391
"source": [
9492
"get_square_task = wg.add_task(\n",
9593
" _get_square,\n",
96-
" name=\"get_square\",\n",
9794
" x=get_sum_task.outputs.result,\n",
9895
")"
9996
]

0 commit comments

Comments
 (0)