Skip to content

Commit 4bc78f8

Browse files
Update adafruit_ssd1306.py
minor fix for linting hints. re-enable `too-many-arguments` after the block in question
1 parent 2854525 commit 4bc78f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1306.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def text(self, string, xpos, ypos, col=1):
134134
def line(self, xpos0, ypos0, xpos1, ypos1, col=1):
135135
"""Draw a line from initial to final point"""
136136
self.framebuf.line(xpos0, ypos0, xpos1, ypos1, col)
137-
#pylint: disable-msg=too-many-arguments
137+
#pylint: enable-msg=too-many-arguments
138138

139139
class SSD1306_I2C(_SSD1306):
140140
"""

0 commit comments

Comments
 (0)