ColorConverter: fix a docstring

This commit is contained in:
Jeff Epler 2021-11-08 10:36:39 -06:00
parent eaf8bc0abe
commit b453d18579
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
//| class ColorConverter:
//| """Converts one color format to another."""
//|
//| def __init__(self, *, colorspace: Colorspace=Colorspace.RGB888, dither: bool = False) -> None:
//| def __init__(self, *, input_colorspace: Colorspace=Colorspace.RGB888, dither: bool = False) -> None:
//| """Create a ColorConverter object to convert color formats.
//|
//| :param Colorspace colorspace: The source colorspace, one of the Colorspace constants