From d10ecfbcdb9e228f8b641ce156472e027446026c Mon Sep 17 00:00:00 2001 From: Martin Miglio Date: Mon, 16 Sep 2024 13:29:38 -0400 Subject: [PATCH] fix inheritence --- clashnetlib/implements/fight_decision_maker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clashnetlib/implements/fight_decision_maker.py b/clashnetlib/implements/fight_decision_maker.py index 9f15363..0844b63 100644 --- a/clashnetlib/implements/fight_decision_maker.py +++ b/clashnetlib/implements/fight_decision_maker.py @@ -48,7 +48,7 @@ def __init__(self, value: FightDecisionValue) -> None: super().__init__(name, value) -class FightDecisionMaker(DecisionMaker[FightDecisionInputValue, FightDecisionValue]): +class FightDecisionMaker(DecisionMaker[FightDecisionInput, FightDecision]): """An implementation of the DecisionMaker class for making decisions during a fight.""" def __init__(self) -> None: