Skip to content

Commit bbffea8

Browse files
author
John Han
committed
Fix bug from refactoring _get_file_size.
1 parent 4961d3b commit bbffea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gcp_variant_transforms/beam_io/vcf_file_size_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def read_records(
162162
buffer_size=self.DEFAULT_VCF_READ_BUFFER_SIZE,
163163
skip_header_lines=0)
164164

165-
_, raw_file_size = _get_file_size(file_name)
165+
raw_file_size = _get_file_size(file_name)
166166

167167
# Open distinct channel to read lines as raw bytestrings.
168168
with filesystems.FileSystems.open(file_name,

0 commit comments

Comments
 (0)