Skip to content

Commit 6d6ac67

Browse files
committed
3.9 linting
1 parent 5c68747 commit 6d6ac67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/langgraph-checkpoint-mongodb/tests/integration_tests/test_highlevel_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class JokeState(JokeInput, JokeOutput): ...
5858
def fanout_to_subgraph() -> StateGraph:
5959
# Subgraph nodes create a joke.
6060
def edit(state: JokeInput) -> dict[str, str]:
61-
return {"subject": f"{state["subject"]}, and cats"}
61+
return {"subject": f"{state['subject']}, and cats"}
6262

6363
def generate(state: JokeInput) -> dict[str, list[str]]:
6464
return {"jokes": [f"Joke about the year {state['subject']}"]}

0 commit comments

Comments
 (0)