Skip to content

Commit 892ddd7

Browse files
committed
fixup
1 parent 61d56b3 commit 892ddd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gcp_variant_transforms/libs/preprocess_reporter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ def _append_disk_usage_estimate_to_report(file_to_write, disk_usage_estimate):
284284
file_to_write.write(
285285
'Estimated disk usage by Dataflow: {} GB. The total raw file sizes summed '
286286
'up to {} GB.\n'.format(
287-
math.ceil(disk_usage_estimate.encoded / 1e9),
288-
math.ceil(disk_usage_estimate.raw / 1e9)))
287+
int(math.ceil(disk_usage_estimate.encoded / 1e9)),
288+
int(math.ceil(disk_usage_estimate.raw / 1e9))))
289289

290290
def _append_to_report(file_to_write, error_type, header, contents):
291291
# type: (file, str, str, List[str]) -> None

0 commit comments

Comments
 (0)