Skip to content

Commit 72ebdc4

Browse files
committed
Pylint compliance
1 parent fe8779f commit 72ebdc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_display_shapes/polygon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ def _line(
115115
@staticmethod
116116
def _safe_draw(
117117
bitmap: displayio.Bitmap,
118-
p: Tuple[int, int],
118+
point: Tuple[int, int],
119119
color: int,
120120
) -> None:
121-
(x, y) = p
121+
(x, y) = point
122122
if 0 <= x < bitmap.width and 0 <= y < bitmap.height:
123123
bitmap[x, y] = color
124124

0 commit comments

Comments
 (0)