6 lines
167 B
Python
6 lines
167 B
Python
from ._cardcollection import CardCollection
|
|
|
|
class Hand(CardCollection):
|
|
def __init__(self, max_handsize=None):
|
|
super().__init__([], max_handsize)
|
|
|