From 9d7bc785dfbc0939c6ef24bfe552def232e3beed Mon Sep 17 00:00:00 2001 From: Devin Matte Date: Fri, 30 Aug 2024 21:20:24 -0400 Subject: [PATCH] Remove print --- ingestor/chalicelib/predictions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ingestor/chalicelib/predictions.py b/ingestor/chalicelib/predictions.py index bf15ba3..a3d7330 100644 --- a/ingestor/chalicelib/predictions.py +++ b/ingestor/chalicelib/predictions.py @@ -48,7 +48,6 @@ def bucket_entries_by_key(entries: Iterator[PredictionAccuracyEntry]) -> Dict[En def parse_prediction_row_to_entry(row: Dict[str, str]) -> Union[None, PredictionAccuracyEntry]: - print(row) weekly = datetime.strptime(row["weekly"][:10], "%Y-%m-%d").date() num_predictions = int(row["num_predictions"]) num_accurate_predictions = int(row["num_accurate_predictions"])