summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio/Bitmap.c
diff options
context:
space:
mode:
authormicroDev <70126934+microDev1@users.noreply.github.com>2020-11-08 00:00:01 +0530
committermicroDev <70126934+microDev1@users.noreply.github.com>2020-11-08 00:00:01 +0530
commit479567059e2bb60e2fd5a2d58be26df2a9e6deae (patch)
treecf218ca135a99ea99a4bc27fabe81d494153f1d9 /shared-bindings/displayio/Bitmap.c
parent80029f6929ebbf6c0a02c5320e59220b0501bd55 (diff)
parent18079c5bbe403a25556e19469a349742dca49633 (diff)
Merge branch 'main' into rotaryio-S2
Diffstat (limited to 'shared-bindings/displayio/Bitmap.c')
-rw-r--r--shared-bindings/displayio/Bitmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/displayio/Bitmap.c b/shared-bindings/displayio/Bitmap.c
index 5a2fc785f..b9f06fe14 100644
--- a/shared-bindings/displayio/Bitmap.c
+++ b/shared-bindings/displayio/Bitmap.c
@@ -172,7 +172,7 @@ STATIC mp_obj_t bitmap_subscr(mp_obj_t self_in, mp_obj_t index_obj, mp_obj_t val
return mp_const_none;
}
-//| def blit(self, x: int, y: int, source_bitmap: bitmap, *, x1: int, y1: int, x2: int, y2: int, skip_index: int) -> None:
+//| def blit(self, x: int, y: int, source_bitmap: Bitmap, *, x1: int, y1: int, x2: int, y2: int, skip_index: int) -> None:
//| """Inserts the source_bitmap region defined by rectangular boundaries
//| (x1,y1) and (x2,y2) into the bitmap at the specified (x,y) location.
//|
@@ -274,7 +274,7 @@ STATIC mp_obj_t displayio_bitmap_obj_blit(size_t n_args, const mp_obj_t *pos_arg
MP_DEFINE_CONST_FUN_OBJ_KW(displayio_bitmap_blit_obj, 4, displayio_bitmap_obj_blit);
// `displayio_bitmap_obj_blit` requires at least 4 arguments
-//| def fill(self, value: Any) -> None:
+//| def fill(self, value: int) -> None:
//| """Fills the bitmap with the supplied palette index value."""
//| ...
//|