File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -462,7 +462,7 @@ def preprocess_and_match_alignments(
462
462
samples_iter = enumerate (samples )
463
463
with tqdm .tqdm (
464
464
samples_iter ,
465
- desc = "Fetch" ,
465
+ desc = f "Fetch: { date } " ,
466
466
total = len (samples ),
467
467
disable = not show_progress ,
468
468
) as bar :
@@ -551,7 +551,7 @@ def extend(
551
551
max_insertion_delay = 30
552
552
earliest_date = parse_date (date ) - datetime .timedelta (days = max_insertion_delay )
553
553
ts = add_matching_results (
554
- f"match_date<'{ date } ' AND match_date>'earliest_date'" ,
554
+ f"match_date<'{ date } ' AND match_date>'{ earliest_date } '" ,
555
555
ts = ts ,
556
556
match_db = match_db ,
557
557
date = date ,
@@ -650,7 +650,7 @@ def add_matching_results(
650
650
651
651
with tqdm .tqdm (
652
652
grouped_matches .items (),
653
- desc = "Build" ,
653
+ desc = f "Build: { date } " ,
654
654
total = len (grouped_matches ),
655
655
disable = not show_progress ,
656
656
) as bar :
You can’t perform that action at this time.
0 commit comments