Skip to content

Commit

Permalink
and more linting
Browse files Browse the repository at this point in the history
  • Loading branch information
caternuson committed Sep 25, 2019
1 parent 297ad9f commit f4b72ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adafruit_rgb_display/rgb.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ def __init__(self, spi, dc, cs, rst=None, width=1, height=1,
if self.rst:
self.rst.switch_to_output(value=0)
self.reset()
self._X_START = x_offset
self._Y_START = y_offset
self._X_START = x_offset # pylint: disable=invalid-name
self._Y_START = y_offset # pylint: disable=invalid-name
super().__init__(width, height)
#pylint: enable-msg=too-many-arguments

Expand Down

0 comments on commit f4b72ad

Please sign in to comment.