From 0af5e993a0319c50d0b27d56325464a58fc3cff2 Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 28 Aug 2024 17:37:36 -0400 Subject: [PATCH] Decrease kickers again --- data/scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scrape.py b/data/scrape.py index 96c5a8d..eb259f1 100644 --- a/data/scrape.py +++ b/data/scrape.py @@ -714,7 +714,7 @@ def validate(df, strict=True, skip_fantasy_pros_check=False): """Throw an exception if we're missing players at a certain position. These numbers are logical estimates.""" logging.info("scraped %d players", len(df)) - pos_counts = {"QB": 32, "RB": 64, "WR": 64, "TE": 28, "DST": 32, "K": 26} + pos_counts = {"QB": 32, "RB": 64, "WR": 64, "TE": 28, "DST": 32, "K": 15} pos_unique = df.pos.unique() for pos, count in pos_counts.items():