Skip to content

Commit 26f9cb4

Browse files
committed
fixing mypy error
1 parent 6554670 commit 26f9cb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/basic/hello_world_jupyter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
agent = Agent(name="Assistant", instructions="You are a helpful assistant")
44

55
# Intended for Jupyter notebooks where there's an existing event loop
6-
result = await Runner.run(agent, "Write a haiku about recursion in programming.") # noqa: F704
6+
result = await Runner.run(agent, "Write a haiku about recursion in programming.") # type: ignore[top-level-await] # noqa: F704
77
print(result.final_output)
88

99
# Code within code loops,

0 commit comments

Comments
 (0)