Skip to content

Commit f9a372d

Browse files
authored
fix(docs): Fix indentation in route_bc_or_cd function (#1184)
## Overview Fix indentation in route_bc_or_cd function ## Type of change **Type:** Fix formatting ## Related issues/PRs - GitHub issue: - Feature PR: <!-- For LangChain employees, if applicable: --> - Linear issue: - Slack thread: ## Checklist <!-- Put an 'x' in all boxes that apply --> - [x] I have read the [contributing guidelines](README.md) - [ ] I have tested my changes locally using `docs dev` - [ ] All code examples have been tested and work correctly - [ ] I have used **root relative** paths for internal links - [ ] I have updated navigation in `src/docs.json` if needed - I have gotten approval from the relevant reviewers - (Internal team members only / optional) I have created a preview deployment using the [Create Preview Branch workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml) ## Additional notes <!-- Any other information that would be helpful for reviewers -->
1 parent 1d6f700 commit f9a372d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/oss/langgraph/use-graph-api.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,9 +2116,9 @@ Your conditional edges can route to multiple destination nodes. For example:
21162116
:::python
21172117
```python
21182118
def route_bc_or_cd(state: State) -> Sequence[str]:
2119-
if state["which"] == "cd":
2120-
return ["c", "d"]
2121-
return ["b", "c"]
2119+
if state["which"] == "cd":
2120+
return ["c", "d"]
2121+
return ["b", "c"]
21222122
```
21232123
:::
21242124

0 commit comments

Comments
 (0)