Skip to content

Commit c17dc72

Browse files
committed
bugfix
1 parent 8fe59fd commit c17dc72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v03_pipeline/lib/tasks/write_project_family_tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self, *args, **kwargs):
3838
self.dynamic_write_family_table_tasks = set()
3939

4040
def complete(self) -> bool:
41-
return len(self.dynamic_write_family_table_tasks) > 1 and all(
41+
return len(self.dynamic_write_family_table_tasks) >= 1 and all(
4242
write_family_table_task.complete()
4343
for write_family_table_task in self.dynamic_write_family_table_tasks
4444
)

0 commit comments

Comments
 (0)