X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/138d74a3457378ca0f684654f7cc4d6b8ce0301a..a3105537d2e9c087f9312b1122739772d2c37c32:/fontio.py diff --git a/fontio.py b/fontio.py index cbb57d6..5e02bdb 100644 --- a/fontio.py +++ b/fontio.py @@ -99,11 +99,11 @@ class BuiltinFont: return self._bitmap -# pylint: disable=too-few-public-methods, invalid-name +# pylint: disable=too-few-public-methods, invalid-name, too-many-arguments class Glyph: """Storage of glyph info""" - def __init__(self, *, bitmap, tile_index, width, height, dx, dy, shift_x, shift_y): + def __init__(self, bitmap, tile_index, width, height, dx, dy, shift_x, shift_y): self.bitmap = bitmap self.width = width self.height = height @@ -114,4 +114,4 @@ class Glyph: self.tile_index = tile_index -# pylint: enable=too-few-public-methods, invalid-name +# pylint: enable=too-few-public-methods, invalid-name, too-many-arguments