diff options
| author | dherrada <dylan.herrada@adafruit.com> | 2020-07-02 13:28:36 -0400 |
|---|---|---|
| committer | dherrada <dylan.herrada@adafruit.com> | 2020-07-02 13:28:36 -0400 |
| commit | 54cb1feea04c0c93afe40868bc050ff7f645c61e (patch) | |
| tree | 7add74472e4e33fb2a0c4c9d59cc48ce87b48255 /shared-bindings/fontio | |
| parent | 522b17ca93d4e1d64bb113057c8a62992a22c4ab (diff) | |
Removed all 'self, )'
Diffstat (limited to 'shared-bindings/fontio')
| -rw-r--r-- | shared-bindings/fontio/BuiltinFont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/fontio/BuiltinFont.c b/shared-bindings/fontio/BuiltinFont.c index bf9a65873..169937553 100644 --- a/shared-bindings/fontio/BuiltinFont.c +++ b/shared-bindings/fontio/BuiltinFont.c @@ -39,7 +39,7 @@ //| class BuiltinFont: //| """A font built into CircuitPython""" //| -//| def __init__(self, ): +//| def __init__(self): //| """Creation not supported. Available fonts are defined when CircuitPython is built. See the //| `Adafruit_CircuitPython_Bitmap_Font <https://github.com/adafruit/Adafruit_CircuitPython_Bitmap_Font>`_ //| library for dynamically loaded fonts.""" @@ -64,7 +64,7 @@ const mp_obj_property_t fontio_builtinfont_bitmap_obj = { (mp_obj_t)&mp_const_none_obj}, }; -//| def get_bounding_box(self, ) -> Any: +//| def get_bounding_box(self) -> Any: //| """Returns the maximum bounds of all glyphs in the font in a tuple of two values: width, height.""" //| ... //| |
