Skip to content

Commit 17858d0

Browse files
committed
display invalid-name and too-few-public-methods pylint checks in circle and line
1 parent 2491de2 commit 17858d0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

adafruit_display_shapes/circle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545

4646

4747
class Circle(RoundRect):
48+
# pylint: disable=too-few-public-methods, invalid-name
4849
"""A circle.
4950
5051
:param x0: The x-position of the center.

adafruit_display_shapes/line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646

4747
class Line(Polygon):
48-
# pylint: disable=too-many-arguments,invalid-name
48+
# pylint: disable=too-many-arguments,invalid-name, too-few-public-methods
4949
"""A line.
5050
5151
:param x0: The x-position of the first vertex.

0 commit comments

Comments
 (0)