Skip to content

Commit

Permalink
Fixed type check
Browse files Browse the repository at this point in the history
Signed-off-by: hbelmiro <[email protected]>
  • Loading branch information
hbelmiro committed Jul 17, 2024
1 parent 12a66e4 commit e84c5be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/kfp/dsl/tasks_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def __has_dependent_tasks(self) -> bool:
return False

return any(
type(task_input) is PipelineParameterChannel
isinstance(task_input, PipelineParameterChannel)
for task_input in self.exit_task.inputs.values())


Expand Down

0 comments on commit e84c5be

Please sign in to comment.