Corrected erroneous edit to fill description to -> None

This commit is contained in:
Kevin Matocha 2020-08-14 14:28:06 -05:00
parent e84723abba
commit bfa9904f3e
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,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) -> Any:
//| def fill(self, value: Any) -> None:
//| """Fills the bitmap with the supplied palette index value."""
//| ...
//|