From 2efe4f6c80127e0c8481f4ff0dbc458869c0c9ac Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Fri, 25 Feb 2022 16:52:28 -0800 Subject: [PATCH] Add missing super() call. --- game/sim/combat/joinablecombat.py | 1 + 1 file changed, 1 insertion(+) diff --git a/game/sim/combat/joinablecombat.py b/game/sim/combat/joinablecombat.py index 7df4a608..63dfb876 100644 --- a/game/sim/combat/joinablecombat.py +++ b/game/sim/combat/joinablecombat.py @@ -12,6 +12,7 @@ if TYPE_CHECKING: class JoinableCombat(FrozenCombat, ABC): def __init__(self, flights: list[Flight]) -> None: + super().__init__() self.flights = flights @abstractmethod