Mysteriously fix tests

This commit is contained in:
Yohann D'ANELLO
2020-11-10 20:43:30 +01:00
parent f9c3fc1517
commit d50c775e0f
3 changed files with 14 additions and 9 deletions

View File

@ -6,8 +6,8 @@ from dungeonbattle.entities.player import Player
class StatsDisplay(Display):
player: Player
def __init__(self, *args):
super().__init__(*args)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.pad = self.newpad(self.rows, self.cols)
def update_player(self, p: Player) -> None: