Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/data_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def _load_estimates_from_csv(csv_path: Path) -> bool:
if count:
logger.info("Loaded %d estimates from %s", count, csv_path)
return count > 0
except (OSError, KeyError, ValueError) as exc:
except (OSError, KeyError, ValueError, csv.Error) as exc:
logger.warning("Failed to load estimates from CSV: %s", exc)
return False

Expand Down
Loading