diff --git a/retrosheet_data.py b/retrosheet_data.py index 8b18204..6188d95 100644 --- a/retrosheet_data.py +++ b/retrosheet_data.py @@ -53,13 +53,11 @@ PROMO_INCLUSION_RETRO_IDS = [ # 'haraa001', # Aaron Harang (SP) # 'hofft001', # Trevor Hoffman (RP) ] -MIN_PA_VL = 20 if "live" in PLAYER_DESCRIPTION.lower() else 1 # 1 for PotM -MIN_PA_VR = 40 if "live" in PLAYER_DESCRIPTION.lower() else 1 # 1 for PotM -MIN_TBF_VL = MIN_PA_VL -MIN_TBF_VR = MIN_PA_VR -CARDSET_ID = ( - 27 if "live" in PLAYER_DESCRIPTION.lower() else 28 -) # 27: 2005 Live, 28: 2005 Promos +MIN_PA_VL = 20 # 1 for PotM +MIN_PA_VR = 40 # 1 for PotM +MIN_TBF_VL = 20 +MIN_TBF_VR = 40 +CARDSET_ID = 27 # 27: 2005 Live, 28: 2005 Promos # Per-Update Parameters SEASON_PCT = 81 / 162 # Through end of July (~half season)