File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -98,11 +98,13 @@ def remove_family_guids(
98
98
family_guids : hl .SetExpression ,
99
99
) -> hl .Table :
100
100
# Remove families from the existing project table structure (both the entries arrays and the globals are mutated)
101
- family_indexes_to_keep = hl .eval (hl .array (
102
- hl .enumerate (ht .globals .family_guids )
103
- .filter (lambda item : ~ family_guids .contains (item [1 ]))
104
- .map (lambda item : item [0 ]),
105
- ))
101
+ family_indexes_to_keep = hl .eval (
102
+ hl .array (
103
+ hl .enumerate (ht .globals .family_guids )
104
+ .filter (lambda item : ~ family_guids .contains (item [1 ]))
105
+ .map (lambda item : item [0 ]),
106
+ )
107
+ )
106
108
ht = ht .annotate (
107
109
# NB: this "should" work without the extra if statement (and does in the tests)
108
110
# however, experiments on dataproc showed this statement hanging with an empty
You can’t perform that action at this time.
0 commit comments