Skip to content

Commit d9ac04e

Browse files
authored
Merge pull request #53 from makermelissa/master
Fixed PyLint issues
2 parents 207cbc6 + 819eb1d commit d9ac04e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

adafruit_display_text/label.py

+1
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ def _update_text(self, new_text): # pylint: disable=too-many-locals
213213
or character != self._text[old_c]
214214
):
215215
try:
216+
# pylint: disable=unexpected-keyword-arg
216217
face = displayio.TileGrid(
217218
glyph.bitmap,
218219
pixel_shader=self.palette,

examples/display_text_anchored_position.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"""
44
import board
55
import terminalio
6-
from adafruit_display_text import label
76
import displayio
7+
from adafruit_display_text import label
88

99
DISPLAY_WIDTH = 320
1010
DISPLAY_HEIGHT = 240

0 commit comments

Comments
 (0)