Skip to content

Commit 837a73c

Browse files
committed
hardcode save_text True
1 parent e2c9f3e commit 837a73c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

adafruit_display_text/accent_label.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ class AccentLabel(BitmapLabel):
3333
Indexes 2 and above can be used for accent colors.
3434
"""
3535

36-
def __init__(
37-
self, font: FontProtocol, color_palette: Palette, save_text: bool = True, **kwargs
38-
) -> None:
39-
super().__init__(font, save_text, **kwargs)
36+
def __init__(self, font: FontProtocol, color_palette: Palette, **kwargs) -> None:
37+
super().__init__(font, True, **kwargs)
4038

4139
if len(color_palette) <= 2:
4240
raise ValueError(

0 commit comments

Comments
 (0)