From 158be1a0f08fad2e8beedbfc0489ac993fadf2c3 Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Fri, 30 Dec 2022 15:47:20 -0500 Subject: [PATCH] Shift weather display left --- weather_display.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weather_display.py b/weather_display.py index ec5dd68..634f354 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 = 6 - self.oneDigitStartColumn = 10 + self.twoDigitStartColumn = 5 + self.oneDigitStartColumn = 9 self.digitWidth = 4 self.currentTemperature = '' self.color = colors.BLUE