diff --git a/clash_royale/envs/game_engine/card.py b/clash_royale/envs/game_engine/card.py index 65777dd..82e744e 100644 --- a/clash_royale/envs/game_engine/card.py +++ b/clash_royale/envs/game_engine/card.py @@ -5,7 +5,6 @@ class Card(): This class is created for Player class to refer to statistics of cards. ''' - def __init__(self, elixir: int): - + def __init__(self, elixir: int) -> None: self.elixir: int = elixir pass