Corrected remap_palette documentation [ci skip]

This commit is contained in:
Andrew Murray 2019-03-23 09:36:59 +11:00
parent 42a6e2de02
commit 81cfede546

View File

@ -1688,7 +1688,7 @@ class Image(object):
Rewrites the image to reorder the palette. Rewrites the image to reorder the palette.
:param dest_map: A list of indexes into the original palette. :param dest_map: A list of indexes into the original palette.
e.g. [1,0] would swap a two item palette, and list(range(255)) e.g. [1,0] would swap a two item palette, and list(range(256))
is the identity transform. is the identity transform.
:param source_palette: Bytes or None. :param source_palette: Bytes or None.
:returns: An :py:class:`~PIL.Image.Image` object. :returns: An :py:class:`~PIL.Image.Image` object.