Skip to content

Commit

Permalink
Actually resolving the super-with-arguments pylint complaint in Confo…
Browse files Browse the repository at this point in the history
…rmalElectionModel
  • Loading branch information
dmnapolitano committed Dec 19, 2024
1 parent a33105a commit 50203dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elexmodel/models/ConformalElectionModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

class ConformalElectionModel(BaseElectionModel.BaseElectionModel, ABC):
def __init__(self, model_settings: dict):
super(ConformalElectionModel, self).__init__(model_settings) # pylint: disable=super-with-arguments
super().__init__(model_settings)
self.lambda_ = model_settings.get("lambda_", 0)

@classmethod
Expand Down

0 comments on commit 50203dc

Please sign in to comment.