From 1fe63a4348a40e6161274e426575d7e69e8d6220 Mon Sep 17 00:00:00 2001 From: Nathanael Lu Date: Mon, 11 Mar 2024 20:25:13 -0400 Subject: [PATCH] updated card.py --- clash_royale/envs/game_engine/card.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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