From 79e8eba3f8baa8cd79294374ec18bda1ad7b04f8 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 25 Apr 2022 18:13:50 +0300 Subject: [PATCH] Docs: spacing Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- src/PIL/ImageColor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/ImageColor.py b/src/PIL/ImageColor.py index 958635bf9..476cd2f82 100644 --- a/src/PIL/ImageColor.py +++ b/src/PIL/ImageColor.py @@ -128,7 +128,7 @@ def getcolor(color, mode): :param color: A color string :param mode: Convert result to this mode - :return: ``(graylevel [, alpha]) or (red, green, blue[, alpha])`` + :return: ``(graylevel[, alpha]) or (red, green, blue[, alpha])`` """ # same as getrgb, but converts the result to the given mode color, alpha = getrgb(color), 255