Skip to content

Commit

Permalink
fix(workflow): answers are output simultaneously across different bra…
Browse files Browse the repository at this point in the history
…ches in the question classifier node. (#8225)
  • Loading branch information
takatost authored Sep 10, 2024
1 parent f6dfe23 commit fdbbdb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def _recursive_fetch_answer_dependencies(
if source_node_type in (
NodeType.ANSWER.value,
NodeType.IF_ELSE.value,
NodeType.QUESTION_CLASSIFIER,
NodeType.QUESTION_CLASSIFIER.value,
):
answer_dependencies[answer_node_id].append(source_node_id)
else:
Expand Down

1 comment on commit fdbbdb7

@ip2cloud
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

working

Please sign in to comment.