aboutsummaryrefslogtreecommitdiff
path: root/poker
diff options
context:
space:
mode:
Diffstat (limited to 'poker')
-rw-r--r--poker/constants.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/poker/constants.py b/poker/constants.py
index b47fb1e..04a8b34 100644
--- a/poker/constants.py
+++ b/poker/constants.py
@@ -6,10 +6,10 @@ from poker.utils.enum import AutoName
class Suit(AutoName):
"""Card suit enum."""
- CLUBS: auto()
- DIAMONDS: auto()
- HEARTS: auto()
- SPADES: auto()
+ CLUBS = auto()
+ DIAMONDS = auto()
+ HEARTS = auto()
+ SPADES = auto()
class Value(IntEnum):