Skip to content

Commit

Permalink
# ISSUE SOLVING: solve kwargs arguments verifications
Browse files Browse the repository at this point in the history
  • Loading branch information
jposada202020 committed Mar 28, 2021
1 parent a94b7d8 commit 9cbf8ba
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 9cbf8ba

Please sign in to comment.