summaryrefslogtreecommitdiff
path: root/shared-bindings/_pixelbuf/PixelBuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/_pixelbuf/PixelBuf.c')
-rw-r--r--shared-bindings/_pixelbuf/PixelBuf.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/shared-bindings/_pixelbuf/PixelBuf.c b/shared-bindings/_pixelbuf/PixelBuf.c
index 2d1f4fff2..71a91d707 100644
--- a/shared-bindings/_pixelbuf/PixelBuf.c
+++ b/shared-bindings/_pixelbuf/PixelBuf.c
@@ -45,12 +45,7 @@ extern const int32_t colorwheel(float pos);
static void parse_byteorder(mp_obj_t byteorder_obj, pixelbuf_byteorder_details_t* parsed);
//| class PixelBuf:
-//| """.. currentmodule:: _pixelbuf
-//|
-//| :class:`PixelBuf` -- A fast RGB[W] pixel buffer for LED and similar devices
-//| ===========================================================================
-//|
-//| :class:`~_pixelbuf.PixelBuf` implements an RGB[W] bytearray abstraction."""
+//| """A fast RGB[W] pixel buffer for LED and similar devices."""
//|
//| def __init__(self, size: int, *, byteorder: str = "BGR", brightness: float = 0, auto_write: bool = False, header: bytes = b"", trailer: bytes = b""):
//| """Create a PixelBuf object of the specified size, byteorder, and bits per pixel.