Skip to content

Commit 6da19ce

Browse files
Merge pull request #1 from kmatch98/patch2-black
Patch2 ran black for formatting fix.
2 parents 2b87870 + beefd49 commit 6da19ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_display_shapes/circle.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ def __init__(self, x0, y0, r, *, fill=None, outline=None, stroke=1):
5454
stroke=stroke,
5555
)
5656
self.r = r
57-
57+
5858
@property
5959
def x0(self):
6060
"""The x-position of the center of the circle."""
6161
return self.x + self.r
62-
62+
6363
@property
6464
def y0(self):
6565
"""The y-position of the center of the circle."""
6666
return self.y + self.r
67-
67+
6868
@x0.setter
6969
def x0(self, x0):
7070
self.x = x0 - self.r
71-
71+
7272
@y0.setter
7373
def y0(self, y0):
7474
self.y = y0 - self.r

0 commit comments

Comments
 (0)