8000 Update shared-bindings/bitmaptools/__init__.c · megacoder/circuitpython@9a77199 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9a77199

Browse files
Update shared-bindings/bitmaptools/__init__.c
Co-authored-by: Dan Halbert <halbert@halwitz.org>
1 parent f6a0fb2 commit 9a77199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/bitmaptools/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ STATIC mp_obj_t bitmaptools_obj_draw_circle(size_t n_args, const mp_obj_t *pos_a
915915
enum {ARG_dest_bitmap, ARG_x, ARG_y, ARG_radius, ARG_value};
916916

917917
static const mp_arg_t allowed_args[] = {
918-
{MP_QSTR_dest_bitmap, MP_ARG_REQUIRED | MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL}},
918+
{MP_QSTR_dest_bitmap, MP_ARG_REQUIRED | MP_ARG_OBJ},
919919
{MP_QSTR_x, MP_ARG_REQUIRED | MP_ARG_INT},
920920
{MP_QSTR_y, MP_ARG_REQUIRED | MP_ARG_INT},
921921
{MP_QSTR_radius, MP_ARG_REQUIRED | MP_ARG_INT},

0 commit comments

Comments
 (0)
0