Skip to content

Commit 736f73e

Browse files
authored
Added a space in roundrect.py for pylint consistency
1 parent e2cd3de commit 736f73e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_display_shapes/roundrect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(self, x, y, width, height, r, *, fill=None, outline=None, stroke=1)
5959
for j in range(r, height - r): # draw the center chunk
6060
self._bitmap[i, j] = 2
6161
self._helper(r, r, r, color=2, fill=True,
62-
x_offset=width-2*r-1, y_offset=height-2*r-1)
62+
x_offset=width-2*r-1, y_offset=height-2*r-1)
6363

6464
if fill is not None:
6565
self._palette[2] = fill

0 commit comments

Comments
 (0)