Skip to content

Commit 91cc70c

Browse files
Fix < typo
1 parent 766d3ef commit 91cc70c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_is31fl3741/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def pixel(self, x, y, color=None):
208208
or None to return current pixel value
209209
"""
210210

211-
if 0 <= x < self.width and 0 <= y <= self.height: # Clip
211+
if 0 <= x < self.width and 0 <= y < self.height: # Clip
212212
addrs = self.pixel_addrs(x, y) # LED indices
213213
# print(addrs)
214214
if color is None: # Return current pixel color if unspecified

0 commit comments

Comments
 (0)