Skip to content

Commit 28cd1c2

Browse files
committed
Moved pylint disabl to end of def line
1 parent dc25b07 commit 28cd1c2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adafruit_framebuf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,7 @@ def __exit__(self, exception_type, exception_value, traceback):
361361
"""cleanup on exit"""
362362
self.deinit()
363363

364-
# pylint: disable=too-many-arguments
365-
def draw_char(self, char, x, y, framebuffer, color, size=1):
364+
def draw_char(self, char, x, y, framebuffer, color, size=1): # pylint: disable=too-many-arguments
366365
"""Draw one character at position (x,y) to a framebuffer in a given color"""
367366
size = max(size, 1)
368367
# Don't draw the character if it will be clipped off the visible area.

0 commit comments

Comments
 (0)