From 2fb53d1c3d96c84676e5091f49218ce8eb101eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Sender=C3=A1k?= Date: Wed, 22 Apr 2020 14:12:50 +0200 Subject: [PATCH] removed Card class dependency --- bridzik.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridzik.py b/bridzik.py index 3332285..08c6a0e 100644 --- a/bridzik.py +++ b/bridzik.py @@ -52,7 +52,7 @@ class Card_values(Enum): return NotImplemented -class Card(JSONEncoder): +class Card(): def __init__(self, color: Card_colors, value: Card_values): self.color = color self.value = value