diff --git a/adafruit_display_text/__init__.py b/adafruit_display_text/__init__.py index 270e25f..2ae8ca2 100755 --- a/adafruit_display_text/__init__.py +++ b/adafruit_display_text/__init__.py @@ -246,7 +246,6 @@ def __init__( tab_replacement: Tuple[int, str] = (4, " "), label_direction: str = "LTR", verbose: bool = False, - **kwargs, # pylint: disable=unused-argument ) -> None: # pylint: disable=too-many-arguments, too-many-locals @@ -271,9 +270,6 @@ def __init__( self._tab_text = self._tab_replacement[1] * self._tab_replacement[0] self._verbose = verbose - if "max_glyphs" in kwargs: - print("Please update your code: 'max_glyphs' is not needed anymore.") - self._ascent, self._descent = self._get_ascent_descent() self._bounding_box = None