Skip to content

Commit 1b97b9f

Browse files
committed
lint
1 parent f2ec44e commit 1b97b9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

v03_pipeline/lib/reference_data/clinvar.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ def download_and_import_clinvar_submission_summary() -> hl.Table:
184184
urllib.request.urlretrieve(CLINVAR_SUBMISSION_SUMMARY_URL, tmp_file.name) # noqa: S310
185185
# Unzip the gzipped file first to fix gzip files being read by hail with single partition
186186
with gzip.open(tmp_file.name, 'rb') as f_in, open(
187-
unzipped_tmp_file.name, 'wb',
187+
unzipped_tmp_file.name,
188+
'wb',
188189
) as f_out:
189190
shutil.copyfileobj(f_in, f_out)
190191

0 commit comments

Comments
 (0)