Skip to content

Commit

Permalink
enhance README with time estimates; properly time the writing of star…
Browse files Browse the repository at this point in the history
…t/stop for binning
  • Loading branch information
CodyCBakerPhD committed Aug 22, 2024
1 parent 566ee1d commit 7814ba4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def bin_all_reduced_s3_logs_by_object_key(
):
if reduced_s3_log_file.stat().st_size == 0:
with open(file=started_tracking_file_path, mode="a") as io:
io.write(f"{reduced_s3_log_file}: 1\n")
io.write(f"{reduced_s3_log_file}\n")
with open(file=completed_tracking_file_path, mode="a") as io:
io.write(f"{reduced_s3_log_file}\n")

Expand All @@ -88,7 +88,7 @@ def bin_all_reduced_s3_logs_by_object_key(
del binned_data_frame

with open(file=started_tracking_file_path, mode="a") as io:
io.write(f"{reduced_s3_log_file}: 1\n")
io.write(f"{reduced_s3_log_file}\n")

for object_key, data in tqdm.tqdm(
iterable=object_keys_to_data.items(),
Expand Down

0 comments on commit 7814ba4

Please sign in to comment.