From ae9c9c3cd9e12e7fe74f621d25de32cbaf03938d Mon Sep 17 00:00:00 2001 From: Derek Caelin Date: Wed, 17 Aug 2022 12:36:49 -0400 Subject: [PATCH] changed "is" to "==" --- weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather.py b/weather.py index 20acfec..c04eafc 100644 --- a/weather.py +++ b/weather.py @@ -143,7 +143,7 @@ draw.ellipse((sx+10, sy+5, sx+25, sy+15), inky_display.WHITE) # small cloud -if (icon is 33) or (icon is 34): +if (icon == 33) or (icon == 34): sx = 145 sy = 35