Skip to content

Commit a97a8c1

Browse files
Update line.py
1 parent 563b36b commit a97a8c1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adafruit_display_shapes/line.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Line(Polygon):
4040

4141
def __init__(self, x0, y0, x1, y1, color):
4242
super().__init__([(x0, y0), (x1, y1)], outline=color)
43-
43+
4444
@property
4545
def color(self):
4646
"""The line color value. Can be a hex value for a color or
@@ -51,4 +51,3 @@ def color(self):
5151
def color(self, color):
5252
self.outline = color
5353
return
54-

0 commit comments

Comments
 (0)