Skip to content

Commit f4b72ad

Browse files
committed
and more linting
1 parent 297ad9f commit f4b72ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_rgb_display/rgb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ def __init__(self, spi, dc, cs, rst=None, width=1, height=1,
232232
if self.rst:
233233
self.rst.switch_to_output(value=0)
234234
self.reset()
235-
self._X_START = x_offset
236-
self._Y_START = y_offset
235+
self._X_START = x_offset # pylint: disable=invalid-name
236+
self._Y_START = y_offset # pylint: disable=invalid-name
237237
super().__init__(width, height)
238238
#pylint: enable-msg=too-many-arguments
239239

0 commit comments

Comments
 (0)