Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
patriotyk committed Jul 27, 2024
1 parent 8e2c949 commit aa1fafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narizaka/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def process(self):
for pair in tqdm(transcriber.transcribe(), total=len(self.needs_transcribe_books), desc='Transcribing'):
if not self.args.c:
futures = pool.submit(Aligner(self.args).run, pair)
future.append(future)
futures.append(future)
if futures:
progress = tqdm(total=len(futures), desc='Aligning and cropping')
for future in as_completed(futures):
Expand Down

0 comments on commit aa1fafb

Please sign in to comment.