Skip to content

Commit b49ec93

Browse files
author
Margaret Matocha
committed
checking the impact of variables on pylint error
1 parent a171421 commit b49ec93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_display_text/label.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ def __init__(
116116
) # initialize with a blank tilegrid placeholder for background
117117

118118
self._padding = (padding_left, padding_top, padding_right, padding_bottom)
119-
# self._padding_top = padding_top
120-
# self._padding_bottom = padding_bottom
121-
# self._padding_left = padding_left
122-
# self._padding_right = padding_right
119+
self._padding_top = padding_top
120+
self._padding_bottom = padding_bottom
121+
self._padding_left = padding_left
122+
self._padding_right = padding_right
123123

124124
if text is not None:
125125
self._update_text(str(text))

0 commit comments

Comments
 (0)