diff --git a/python/scrape_wbb_schedules.py b/python/scrape_wbb_schedules.py index 9f5a21ecdf8..f1d6b73e879 100755 --- a/python/scrape_wbb_schedules.py +++ b/python/scrape_wbb_schedules.py @@ -35,7 +35,7 @@ def download_game_schedules(seasons, path_to_schedules): def download_schedule(season, path_to_schedules = None): logger.info(f"Scraping WBB schedules for year {season}...") - df = sdv.wbb.espn_wbb_calendar(season, ondays = True, return_as_pandas = True) + df = sdv.wbb.espn_wbb_calendar(season, return_as_pandas = True) calendar = df["dateURL"].str.replace("-","").tolist() ev = pd.DataFrame() for d in calendar: @@ -84,4 +84,4 @@ def main(): parser.add_argument("--rescrape", "-r", type = bool, default = True, help = "Rescrape all games in the schedule period") args = parser.parse_args() - main() \ No newline at end of file + main()