mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
cli: fix asyncio runner bug for 3.10 (#860)
This commit is contained in:
@@ -12,6 +12,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
python-version:
|
||||
- "3.10"
|
||||
- "3.11"
|
||||
name: "CLI integration test"
|
||||
defaults:
|
||||
|
||||
@@ -22,7 +22,7 @@ def Runner():
|
||||
pass
|
||||
|
||||
def run(self, coro):
|
||||
asyncio.run(coro)
|
||||
return asyncio.run(coro)
|
||||
|
||||
yield _Runner()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user