Skip to content

Commit

Permalink
chore: quality fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Mar 22, 2024
1 parent d9ae846 commit d71122f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ def transform_tracking_logs(
while last_successful_byte < int(file.size):
end_byte = last_successful_byte + CHUNK_SIZE

if end_byte > file.size:
end_byte = file.size
end_byte = min(end_byte, file.size)

chunks = _get_chunks(source, file, last_successful_byte, end_byte)

Expand Down

0 comments on commit d71122f

Please sign in to comment.