Skip to content

Commit beeb668

Browse files
committed
update copyrights, remove unused empty files. remove debugging print
1 parent 73f4a61 commit beeb668

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

shared-bindings/tilepalettemapper/TilePaletteMapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of the CircuitPython project: https://circuitpython.org
22
//
3-
// SPDX-FileCopyrightText: Copyright (c) 2017 Scott Shawcroft for Adafruit Industries
3+
// SPDX-FileCopyrightText: Copyright (c) 2025 Tim Cocks for Adafruit Industries
44
//
55
// SPDX-License-Identifier: MIT
66
#include <stdint.h>

shared-bindings/tilepalettemapper/TilePaletteMapper.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
// This file is part of the CircuitPython project: https://circuitpython.org
12
//
2-
// Created by timc on 3/4/25.
3+
// SPDX-FileCopyrightText: Copyright (c) 2025 Tim Cocks for Adafruit Industries
34
//
5+
// SPDX-License-Identifier: MIT
46
#include "shared-module/tilepalettemapper/TilePaletteMapper.h"
57

68
extern const mp_obj_type_t tilepalettemapper_tilepalettemapper_type;

shared-bindings/tilepalettemapper/__init__.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@
88

99

1010
static const mp_rom_map_elem_t tilepalettemapper_module_globals_table[] = {
11-
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_tilepalettemapper) },
12-
{ MP_ROM_QSTR(MP_QSTR_TilePaletteMapper), MP_ROM_PTR(&tilepalettemapper_tilepalettemapper_type) },
11+
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_tilepalettemapper) },
12+
{ MP_ROM_QSTR(MP_QSTR_TilePaletteMapper), MP_ROM_PTR(&tilepalettemapper_tilepalettemapper_type) },
1313
};
14-
//mp_printf(&mp_plat_print, tilepalettemapper_module_globals_table[0])
1514
static MP_DEFINE_CONST_DICT(tilepalettemapper_module_globals, tilepalettemapper_module_globals_table);
1615

1716
const mp_obj_module_t tilepalettemapper_module = {
18-
.base = {&mp_type_module },
19-
.globals = (mp_obj_dict_t *)&tilepalettemapper_module_globals,
17+
.base = {&mp_type_module },
18+
.globals = (mp_obj_dict_t *)&tilepalettemapper_module_globals,
2019
};
2120

2221
MP_REGISTER_MODULE(MP_QSTR_tilepalettemapper, tilepalettemapper_module);

shared-bindings/tilepalettemapper/__init__.h

Whitespace-only changes.

shared-module/tilepalettemapper/__init__.h

Whitespace-only changes.

0 commit comments

Comments
 (0)