Skip to content

Commit 16c52b7

Browse files
committed
Capitalize module
1 parent 6d412e2 commit 16c52b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-bindings/is31fl3741/__init__.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
STATIC const mp_rom_map_elem_t is31fl3741_module_globals_table[] = {
3535
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_is31fl3741) },
36-
{ MP_ROM_QSTR(MP_QSTR_is31fl3741), MP_ROM_PTR(&is31fl3741_is31fl3741_type) },
36+
{ MP_ROM_QSTR(MP_QSTR_IS31FL3741), MP_ROM_PTR(&is31fl3741_is31fl3741_type) },
3737
};
3838

3939
STATIC MP_DEFINE_CONST_DICT(is31fl3741_module_globals, is31fl3741_module_globals_table);
@@ -43,4 +43,4 @@ const mp_obj_module_t is31fl3741_module = {
4343
.globals = (mp_obj_dict_t *)&is31fl3741_module_globals,
4444
};
4545

46-
MP_REGISTER_MODULE(MP_QSTR_is31fl3741, is31fl3741_module, CIRCUITPY_IS31FL3741);
46+
MP_REGISTER_MODULE(MP_QSTR_IS31FL3741, is31fl3741_module, CIRCUITPY_IS31FL3741);

0 commit comments

Comments
 (0)