summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio/Palette.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/displayio/Palette.c')
-rw-r--r--shared-bindings/displayio/Palette.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/displayio/Palette.c b/shared-bindings/displayio/Palette.c
index 37cfbd82e..4823fdae2 100644
--- a/shared-bindings/displayio/Palette.c
+++ b/shared-bindings/displayio/Palette.c
@@ -70,7 +70,7 @@ STATIC mp_obj_t displayio_palette_make_new(const mp_obj_type_t *type, size_t n_a
return MP_OBJ_FROM_PTR(self);
}
-//| def __len__(self, ) -> Any:
+//| def __len__(self) -> Any:
//| """Returns the number of colors in a Palette"""
//| ...
//|