Skip to content

Commit d09bac7

Browse files
authored
Merge pull request #148 from jposada202020/solving_kwargs
Solving kwargs arguments verifications
2 parents a94b7d8 + 9cbf8ba commit d09bac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_display_text/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __init__(
217217
label_direction: str = "LTR",
218218
**kwargs,
219219
) -> None:
220-
super().__init__(max_size=1, x=x, y=y, scale=1)
220+
super().__init__(max_size=1, x=x, y=y, scale=1, **kwargs)
221221

222222
self._font = font
223223
self.palette = Palette(2)

0 commit comments

Comments
 (0)