We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1eebc8 + 6379cc7 commit 156c13dCopy full SHA for 156c13d
adafruit_display_text/__init__.py
@@ -246,7 +246,6 @@ def __init__(
246
tab_replacement: Tuple[int, str] = (4, " "),
247
label_direction: str = "LTR",
248
verbose: bool = False,
249
- **kwargs, # pylint: disable=unused-argument
250
) -> None:
251
# pylint: disable=too-many-arguments, too-many-locals
252
@@ -271,9 +270,6 @@ def __init__(
271
270
self._tab_text = self._tab_replacement[1] * self._tab_replacement[0]
272
self._verbose = verbose
273
274
- if "max_glyphs" in kwargs:
275
- print("Please update your code: 'max_glyphs' is not needed anymore.")
276
-
277
self._ascent, self._descent = self._get_ascent_descent()
278
self._bounding_box = None
279
0 commit comments