Skip to content

Commit 02728f1

Browse files
committed
Doc changes
1 parent 19660ec commit 02728f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared-bindings/is31fl3741/FrameBuffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
//| class IS31FL3741_FrameBuffer:
4141
//| """Creates an in-memory framebuffer for a IS31FL3741 device."""
4242
//|
43-
//| def __init__(self, *, is31: is31fl3741.IS31FL3741, width: int, height: int, mapping: Tuple[int, ...],
43+
//| def __init__(self, is31: is31fl3741.IS31FL3741, width: int, height: int, mapping: Tuple[int, ...], *,
4444
//| framebuffer: Optional[WriteableBuffer] = None, scale: bool = False, gamma: bool = False) -> None:
4545
//| """Create a IS31FL3741_FrameBuffer object with the given attributes.
4646
//|

shared-bindings/is31fl3741/IS31FL3741.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
STATIC mp_obj_t is31fl3741_IS31FL3741_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
5151
enum { ARG_i2c, ARG_addr };
5252
static const mp_arg_t allowed_args[] = {
53-
{ MP_QSTR_i2c, MP_ARG_OBJ | MP_ARG_REQUIRED | MP_ARG_KW_ONLY },
53+
{ MP_QSTR_i2c, MP_ARG_OBJ | MP_ARG_REQUIRED },
5454
{ MP_QSTR_addr, MP_ARG_INT | MP_ARG_KW_ONLY, { .u_int = 0x30 } },
5555
};
5656
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];

0 commit comments

Comments
 (0)