From 123ecbb8a5833123346f3f7c3d6b760f2783ccf5 Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Thu, 17 Jun 2021 10:15:40 -0400 Subject: [PATCH] Fix error --- system-status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-status.py b/system-status.py index 888af93..77df54e 100644 --- a/system-status.py +++ b/system-status.py @@ -53,7 +53,7 @@ class SystemStatus: for y in range(value): self.hat.set_pixel(x, y, *color) for y in range(value, self.height): - self.hat.set_pixel(x, y, BLACK) + self.hat.set_pixel(x, y, *BLACK) def getTempValue(self): temp = psutil.sensors_temperatures()['cpu_thermal'][0].current