mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-30 19:59:40 +02:00
chore: lint v1 branch (due to auto merges) (#5607)
This commit is contained in:
@@ -1240,7 +1240,7 @@ def _control_branch(value: Any) -> Sequence[tuple[str, Any]]:
|
||||
for command in commands:
|
||||
if command.graph == Command.PARENT:
|
||||
raise ParentCommand(command)
|
||||
|
||||
|
||||
goto_targets = (
|
||||
[command.goto] if isinstance(command.goto, (Send, str)) else command.goto
|
||||
)
|
||||
@@ -1251,7 +1251,7 @@ def _control_branch(value: Any) -> Sequence[tuple[str, Any]]:
|
||||
elif isinstance(go, str) and go != END:
|
||||
# END is a special case, it's not actually a node in a practical sense
|
||||
# but rather a special terminal node that we don't need to branch to
|
||||
rtn.append((CHANNEL_BRANCH_TO.format(go), None))
|
||||
rtn.append((_CHANNEL_BRANCH_TO.format(go), None))
|
||||
return rtn
|
||||
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -1394,7 +1394,7 @@ dev = [
|
||||
|
||||
[[package]]
|
||||
name = "langgraph-cli"
|
||||
version = "0.3.4"
|
||||
version = "0.3.5"
|
||||
source = { editable = "../cli" }
|
||||
dependencies = [
|
||||
{ name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
||||
|
||||
Reference in New Issue
Block a user