Skip to content

Commit 340edc8

Browse files
committed
lint
1 parent edfcb0f commit 340edc8

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

v03_pipeline/lib/tasks/update_lookup_table.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,16 @@ def initialize_table(self) -> hl.Table:
125125
def update_table(self, ht: hl.Table) -> hl.Table:
126126
# NB: there's a chance this many hail operations blows the DAG compute stack
127127
# in an unfortunate way. Please keep an eye out!
128-
for i, (callset_path, project_guid, _, _) in enumerate(callset_project_pairs(
129-
self.callset_paths,
130-
self.project_guids,
131-
self.project_remap_paths,
132-
self.project_pedigree_paths,
133-
)):
128+
for i, (callset_path, project_guid, _, _) in enumerate(
129+
callset_project_pairs(
130+
self.callset_paths,
131+
self.project_guids,
132+
self.project_remap_paths,
133+
self.project_pedigree_paths,
134+
)
135+
):
134136
if project_guid in PROJECTS_EXCLUDED_FROM_LOOKUP:
135-
ht = ht.annotate_globals(
137+
ht = ht.annotate_globals(
136138
updates=ht.updates.add(
137139
hl.Struct(
138140
callset=callset_path,
@@ -160,7 +162,9 @@ def update_table(self, ht: hl.Table) -> hl.Table:
160162
project_guids=ht.project_guids,
161163
project_families=ht.project_families,
162164
updates=ht.updates.add(
163-
hl.Struct(callset=self.callset_path, project_guid=self.project_guid),
165+
hl.Struct(
166+
callset=self.callset_path, project_guid=self.project_guid
167+
),
164168
),
165169
)
166170
return ht

0 commit comments

Comments
 (0)