summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2021-03-16 20:45:55 -0500
committerKevin Matocha <kmatocha@icloud.com>2021-03-16 20:45:55 -0500
commit592f89f6aeab6f19835baa01cc9b1db12009505a (patch)
tree16e3f96e2ee3dfcdd9d59b918d0a0ed749d6370c /shared-bindings
parent5c3cce6f5d8ca15aeef486f903da6531f5d53ba5 (diff)
add back peculiar r to docstring
Diffstat (limited to 'shared-bindings')
-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 01c700070..dc71c0560 100644
--- a/shared-bindings/displayio/Palette.c
+++ b/shared-bindings/displayio/Palette.c
@@ -84,7 +84,7 @@ STATIC mp_obj_t group_unary_op(mp_unary_op_t op, mp_obj_t self_in) {
}
//| def __getitem__(self, index: int) -> Optional[int]:
-//| """Return the pixel color at the given index as an integer."""
+//| r"""Return the pixel color at the given index as an integer."""
//| ...
//|
//| def __setitem__(self, index: int, value: Union[int, ReadableBuffer, Tuple[int, int, int]]) -> None: