diff options
| author | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 10:05:14 -0400 |
|---|---|---|
| committer | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 10:05:14 -0400 |
| commit | 783cc4de398aba060eb69971c4aaf3453ee43500 (patch) | |
| tree | c8d4da56195cfcb633351fa8c12ba9e023337fbd /shared-bindings/displayio/Shape.c | |
| parent | 9b4ffc05710873e69bfeed209d0f7ebd8fb2f259 (diff) | |
Added type hints to displayio
Diffstat (limited to 'shared-bindings/displayio/Shape.c')
| -rw-r--r-- | shared-bindings/displayio/Shape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/displayio/Shape.c b/shared-bindings/displayio/Shape.c index fce89c771..258ac4902 100644 --- a/shared-bindings/displayio/Shape.c +++ b/shared-bindings/displayio/Shape.c @@ -79,7 +79,7 @@ STATIC mp_obj_t displayio_shape_make_new(const mp_obj_type_t *type, size_t n_arg } -//| def set_boundary(self, y: Any, start_x: Any, end_x: Any) -> Any: +//| def set_boundary(self, y: int, start_x: int, end_x: int) -> None: //| """Loads pre-packed data into the given row.""" //| ... //| |
