Skip to content

Commit

Permalink
changed "is" to "=="
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekCaelin authored Aug 17, 2022
1 parent 010d1e0 commit ae9c9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ae9c9c3

Please sign in to comment.