From 11f3ed767932729ccc7f49a9b93578ffa21cb8df Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Tue, 27 Dec 2022 10:53:33 -0500 Subject: [PATCH] Update garage display --- garage_display.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/garage_display.py b/garage_display.py index 7526ad2..5bfb74c 100644 --- a/garage_display.py +++ b/garage_display.py @@ -7,12 +7,12 @@ class GarageDisplay: self.characterDisplay = characterDisplay self.topRow = topRow self.westDoorStartColumn = 0 - self.eastDoorStartColumn = 5 + self.eastDoorStartColumn = 12 self.currentState = {} self.closedOutlineColor = colors.RED - self.closedFillColor = colors.GRAY + self.closedFillColor = colors.RED self.openOutlineColor = colors.WHITE - self.openFillColor = colors.BLUE + self.openFillColor = colors.WHITE self.garageFile = 'garage.json' def showGarageState(self):