From 3ec8b7b009517d9b4f73e55842d268b36840eafd Mon Sep 17 00:00:00 2001 From: Ben Brostoff Date: Mon, 29 Jan 2024 08:21:04 -0500 Subject: [PATCH] Fix unenforced rule --- draftfast/rules.py | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/draftfast/rules.py b/draftfast/rules.py index ac8d080..03a6e1d 100644 --- a/draftfast/rules.py +++ b/draftfast/rules.py @@ -246,8 +246,6 @@ def __eq__(self, other): # https://support.fanduel.com/s/article/How-many-players-can-I-select-from-one-team position_per_team_rules=[ [lambda pos: "P" not in pos, 4], - # Must include at least one C or 1B - [lambda pos: pos in ['C', '1B'], 1] ], ) diff --git a/setup.py b/setup.py index 9342732..b4226e7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name='draftfast', - version='3.12.4', + version='3.12.5', author='Ben Brostoff', author_email='ben.brostoff@gmail.com', description='A tool to automate and optimize DraftKings and FanDuel '