Skip to content

Commit 9c5ab23

Browse files
gustavocidornelaswhoseoyster
authored andcommitted
ci: disable print linting issue
1 parent cb8838c commit 9c5ab23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/tracing/langgraph/langgraph_tracing.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
"# you'll be able to see the traces in the Openlayer platform.\n",
156156
"for s in graph.stream({\"messages\": [HumanMessage(content = \"What is the meaning of life?\")]},\n",
157157
" config={\"callbacks\": [openlayer_handler]}):\n",
158-
" print(s)"
158+
" print(s) # noqa: T201"
159159
]
160160
},
161161
{
@@ -188,7 +188,7 @@
188188
"# Define a new tool that returns the current datetime\n",
189189
"datetime_tool = Tool(\n",
190190
" name=\"Datetime\",\n",
191-
" func = lambda x: datetime.now().isoformat(),\n",
191+
" func = lambda x: datetime.now().isoformat(), # noqa: ARG005\n",
192192
" description=\"Returns the current datetime\",\n",
193193
")"
194194
]
@@ -354,7 +354,7 @@
354354
"# you'll be able to see the traces in the Openlayer platform.\n",
355355
"for s in graph_2.stream({\"messages\": [HumanMessage(content = \"How does photosynthesis work?\")]},\n",
356356
" config={\"callbacks\": [openlayer_handler]}):\n",
357-
" print(s)"
357+
" print(s) # noqa: T201"
358358
]
359359
},
360360
{

0 commit comments

Comments
 (0)