From 97f2cdf27132ec2af2c4ac22cd1dff6c15ff6d3d Mon Sep 17 00:00:00 2001 From: royjr Date: Sun, 23 Aug 2026 22:27:43 -0400 Subject: [PATCH] 99 --- openpilot/sunnypilot/modeld_v2/load_progress.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openpilot/sunnypilot/modeld_v2/load_progress.py b/openpilot/sunnypilot/modeld_v2/load_progress.py index cc08aa444c..f1ddb6b779 100644 --- a/openpilot/sunnypilot/modeld_v2/load_progress.py +++ b/openpilot/sunnypilot/modeld_v2/load_progress.py @@ -40,6 +40,5 @@ class ProgressReader: def open_with_progress(pkl_path): - manifest = get_manifest_path(pkl_path) - total = sum(os.path.getsize(p) for p in get_existing_chunks(pkl_path) if p != manifest) + total = sum(os.path.getsize(p) for p in get_existing_chunks(pkl_path)) return ProgressReader(open_file_chunked(pkl_path), total)