Skip to content

Commit

Permalink
Merge pull request #148 from jposada202020/solving_kwargs
Browse files Browse the repository at this point in the history
Solving kwargs arguments verifications
  • Loading branch information
FoamyGuy authored Mar 30, 2021
2 parents a94b7d8 + 9cbf8ba commit d09bac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_display_text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def __init__(
label_direction: str = "LTR",
**kwargs,
) -> None:
super().__init__(max_size=1, x=x, y=y, scale=1)
super().__init__(max_size=1, x=x, y=y, scale=1, **kwargs)

self._font = font
self.palette = Palette(2)
Expand Down

0 comments on commit d09bac7

Please sign in to comment.