mirror of https://github.com/langgenius/dify.git
refactor(graph_engine): Use _ to mark unused variable in BranchHandler
Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
parent
c82697f267
commit
1d377fe994
|
|
@ -62,7 +62,7 @@ class BranchHandler:
|
|||
raise ValueError(f"Branch node {node_id} completed without selecting a branch")
|
||||
|
||||
# Categorize edges into selected and unselected
|
||||
selected_edges, unselected_edges = self.edge_state_manager.categorize_branch_edges(node_id, selected_handle)
|
||||
_, unselected_edges = self.edge_state_manager.categorize_branch_edges(node_id, selected_handle)
|
||||
|
||||
# Skip all unselected paths
|
||||
self.skip_propagator.skip_branch_paths(unselected_edges)
|
||||
|
|
|
|||
Loading…
Reference in New Issue