From bb77dab628dbc6399bce4a39223f4ae5917cff3a Mon Sep 17 00:00:00 2001 From: eichhornchen Date: Tue, 5 Jan 2021 10:49:04 +0100 Subject: [PATCH] Fixed a error induced by the merge: creditsdisplay did not have an update function --- squirrelbattle/display/creditsdisplay.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/squirrelbattle/display/creditsdisplay.py b/squirrelbattle/display/creditsdisplay.py index af8d879..1f8ea32 100644 --- a/squirrelbattle/display/creditsdisplay.py +++ b/squirrelbattle/display/creditsdisplay.py @@ -16,6 +16,9 @@ class CreditsDisplay(Display): self.pad = self.newpad(1, 1) self.ascii_art_displayed = False + def update(self, game: Game) -> None: + return + def display(self) -> None: self.box.refresh(self.y, self.x, self.height, self.width) self.box.display()