Skip to content

Commit

Permalink
code/ulab.c: Fix missing comma in ulab_dtype_type definition. (#553)
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
  • Loading branch information
jimmo committed Oct 10, 2022
1 parent 41fcf1d commit 38e99c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/ulab.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
ulab_dtype_type,
MP_QSTR_dtype,
MP_TYPE_FLAG_NONE,
print, ndarray_dtype_print
print, ndarray_dtype_print,
make_new, ndarray_dtype_make_new
);
#else
Expand Down

0 comments on commit 38e99c6

Please sign in to comment.