remove Board.__len__()

This commit is contained in:
Jörn-Michael Miehe 2023-08-20 11:46:36 +00:00
parent ae3490f478
commit 9c00dd61a4

View file

@ -28,9 +28,6 @@ class Board:
else:
return len(self.rows[0])
def __len__(self) -> int:
return self.height * self.width
def __post_init__(self) -> None:
# check char set
chars = {c for c in "".join(self.rows)}
@ -44,7 +41,7 @@ class Board:
# check buttons
assert all(
button in range(len(self))
button in range(self.height * self.width)
for button in self.buttons
), "Invalid buttons!"