lint + update

This commit is contained in:
vbarda
2025-05-14 22:01:54 -04:00
parent 54ddde9d4c
commit 4ffae6065f
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -133,8 +133,8 @@ def draw_graph(
task.name: {
(
w[0],
(task.name, *w) in conditionals,
conditionals.get((task.name, *w)),
(task.name, w[0], w[1] or None) in conditionals,
conditionals.get((task.name, w[0], w[1] or None)),
)
for w in task.writes
}
+3 -1
View File
@@ -863,7 +863,9 @@ async def test_ainvoke():
assert result == {"messages": [{"type": "human", "content": "world"}]}
@pytest.mark.skip("Unskip this test to manually test the LangGraph Platform integration")
@pytest.mark.skip(
"Unskip this test to manually test the LangGraph Platform integration"
)
@pytest.mark.anyio
async def test_langgraph_cloud_integration():
from langgraph_sdk.client import get_client, get_sync_client