Skip to content

Commit

Permalink
Fix binning skipping (#56)
Browse files Browse the repository at this point in the history
* debugging skip

* debugging skip

* debugging skip

* debugging skip

* debugging skip

* debugging skip

---------

Co-authored-by: CodyCBakerPhD <[email protected]>
  • Loading branch information
CodyCBakerPhD and CodyCBakerPhD authored Aug 22, 2024
1 parent 0ac10ce commit b8a8b43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def bin_all_reduced_s3_logs_by_object_key(
completed_tracking_file_path.touch()
else:
with open(file=started_tracking_file_path, mode="r") as io:
started = set(pathlib.Path(path) for path in io.readlines())
started = set(pathlib.Path(path.rstrip("\n")) for path in io.readlines())
with open(file=completed_tracking_file_path, mode="r") as io:
completed = set(pathlib.Path(path) for path in io.readlines())
completed = set(pathlib.Path(path.rstrip("\n")) for path in io.readlines())

if started != completed:
raise ValueError(
Expand Down

0 comments on commit b8a8b43

Please sign in to comment.