lint
This commit is contained in:
parent
5a8650418c
commit
f3c46a4507
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ class Display:
|
||||||
self.matrix1.show()
|
self.matrix1.show()
|
||||||
self.matrix2.show()
|
self.matrix2.show()
|
||||||
|
|
||||||
def pixel(self, matrix, x, y, color):
|
def pixel(self, matrix, x, y, color): # pylint: disable=no-self-use
|
||||||
"""Draw a pixel with 180-degree rotation"""
|
"""Draw a pixel with 180-degree rotation"""
|
||||||
fx, fy = 12 - x, 8 - y
|
fx, fy = 12 - x, 8 - y
|
||||||
if 0 <= fx < 13 and 0 <= fy < 9:
|
if 0 <= fx < 13 and 0 <= fy < 9:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue