From a43d46e87af1962697d10a20e366524a6062fe71 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 26 Jul 2021 22:53:39 +1000 Subject: [PATCH] Corrected size parameter documentation [ci skip] --- src/PIL/ImagePalette.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/PIL/ImagePalette.py b/src/PIL/ImagePalette.py index b0c722b29..214059f51 100644 --- a/src/PIL/ImagePalette.py +++ b/src/PIL/ImagePalette.py @@ -28,12 +28,11 @@ class ImagePalette: :param mode: The mode to use for the Palette. See: :ref:`concept-modes`. Defaults to "RGB" :param palette: An optional palette. If given, it must be a bytearray, - an array or a list of ints between 0-255 and of length ``size`` - times the number of colors in ``mode``. The list must be aligned + an array or a list of ints between 0-255. The list must be aligned by channel (All R values must be contiguous in the list before G and B values.) Defaults to 0 through 255 per channel. - :param size: An optional palette size. If given, it cannot be equal to - or greater than 256. Defaults to 0. + :param size: An optional palette size. If given, an error is raised + if ``palette`` is not of equal length. """ def __init__(self, mode="RGB", palette=None, size=0):