diff options
author | Paul Harrison <paul@harrison.sh> | 2022-11-20 13:39:08 +0000 |
---|---|---|
committer | Paul Harrison <paul@harrison.sh> | 2022-12-15 16:02:14 +0000 |
commit | b4ba284dcc20563b9b7dde770b7c9f67c6b25e76 (patch) | |
tree | 7131329e9367c5140f65ebc48ec09ae732261fbb /poker/rank/__init__.py | |
parent | d924e39608861362e08c5e3706ff46a7a1af919b (diff) |
feat: Construct ranked hand with description
Refactors rank test functions to retern details required for
description, then return RankedHand from rank_hand function.
Diffstat (limited to 'poker/rank/__init__.py')
-rw-r--r-- | poker/rank/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/poker/rank/__init__.py b/poker/rank/__init__.py index e69de29..c8700f9 100644 --- a/poker/rank/__init__.py +++ b/poker/rank/__init__.py @@ -0,0 +1,3 @@ +from poker.rank.hands import rank_hand + +__all__ = ["rank_hand"] |