From 56d0e1f5d4d6e051306decfe8fa89a94ffeb1c6f Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Fri, 30 Dec 2022 19:06:33 -0500 Subject: [PATCH] Center temperature --- weather_display.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weather_display.py b/weather_display.py index 5309d6b..bd780a7 100644 --- a/weather_display.py +++ b/weather_display.py @@ -5,8 +5,8 @@ class WeatherDisplay: def __init__(self, characterDisplay, topRow): self.characterDisplay = characterDisplay self.topRow = topRow - self.twoDigitStartColumn = 4 - self.oneDigitStartColumn = 8 + self.twoDigitStartColumn = 5 + self.oneDigitStartColumn = 7 self.digitWidth = 4 self.currentTemperature = '' self.color = colors.ORANGE