Skip to content

Commit 86e8976

Browse files
authored
chore(docs): fix runnable example (langchain-ai#9027)
1 parent 977ba70 commit 86e8976

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/core_docs/docs/how_to/assign.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
{
3838
"cell_type": "code",
39-
"execution_count": 1,
39+
"execution_count": null,
4040
"metadata": {},
4141
"outputs": [
4242
{
@@ -56,8 +56,8 @@
5656
"const runnable = RunnableParallel.from({\n",
5757
" extra: RunnablePassthrough.assign({\n",
5858
" mult: (input: { num: number }) => input.num * 3,\n",
59-
" modified: (input: { num: number }) => input.num + 1\n",
60-
" })\n",
59+
" }),\n",
60+
" modified: (input: { num: number }) => input.num + 1,\n",
6161
"});\n",
6262
"\n",
6363
"await runnable.invoke({ num: 1 });"

0 commit comments

Comments
 (0)