Skip to content

Commit

Permalink
Update src/backend/base/langflow/custom/custom_component/component.py
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel Luiz Freitas Almeida <[email protected]>
  • Loading branch information
italojohnny and ogabrielluiz authored Jan 13, 2025
1 parent 4f54266 commit 82019a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ def _should_process_output(self, output):
return output.name in self._vertex.edges_source_names

def _get_outputs_to_process(self):
return [output for output in self._outputs_map.values() if self._should_process_output(output)]
return (output for output in self._outputs_map.values() if self._should_process_output(output))

async def _get_output_result(self, output):
if output.cache and output.value != UNDEFINED:
Expand Down

0 comments on commit 82019a2

Please sign in to comment.