Skip to content

Commit

Permalink
Fix job_project_infos list generator
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenAnpu committed Aug 27, 2024
1 parent c6764f6 commit fa0e22a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def workflow_output(
layer.sly_project_info for layer in project_layers
]
job_project_infos: Optional[List[ProjectInfo]] = [
job.project_name for layer in job_layers for job in layer.sly_project_info
layer.sly_project_info for layer in job_layers
]
project_infos.extend(job_project_infos)
project_infos = list(set(project_infos))
Expand Down

0 comments on commit fa0e22a

Please sign in to comment.