Pillow icon indicating copy to clipboard operation
Pillow copied to clipboard

Assert palette is not None

Open radarhere opened this issue 8 months ago • 0 comments

This is part of https://github.com/python-pillow/Pillow/pull/8362 - I'm hoping to break down that PR into easier-to-review chunks.

Image's palette may be None

>>> from PIL import Image
>>> im = Image.new("RGB", (1, 1))
>>> im.palette is None
True

So before using it, let's assert that it isn't None.

radarhere avatar Apr 10 '25 08:04 radarhere