Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
devinmatte committed Aug 31, 2024
1 parent d87b7f7 commit 9d7bc78
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ingestor/chalicelib/predictions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down

0 comments on commit 9d7bc78

Please sign in to comment.