From d5c1a787f7cfadb07979692d47bd2b781570839b Mon Sep 17 00:00:00 2001 From: iou1name Date: Sat, 22 Mar 2025 20:40:20 -0400 Subject: [PATCH] fix progress inaccuracy --- build_library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library.py b/build_library.py index 5029e25..b70f007 100644 --- a/build_library.py +++ b/build_library.py @@ -81,14 +81,14 @@ async def build_library(root_dir): while True: try: track = mapping.next() - if track: - tracks.append(track) + tracks.append(track) except StopIteration: break percent = round(len(tracks) / len(filepaths) * 100, 2) if percent >= prev_percent + 2.5: print(f"{percent}%") prev_percent = percent + tracks = [t for t in tracks if t] if not tracks: print("No new tracks found!") return