From 023c4dff67c3f37398f81ce1b3f75aba47f2a5e4 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Mon, 11 Oct 2021 15:56:59 +0300 Subject: [PATCH] Color arguments also take (r,g,b,a) tuples (#6148) --- stubs/Pillow/PIL/ImageDraw.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/Pillow/PIL/ImageDraw.pyi b/stubs/Pillow/PIL/ImageDraw.pyi index b8f197368..54650ed19 100644 --- a/stubs/Pillow/PIL/ImageDraw.pyi +++ b/stubs/Pillow/PIL/ImageDraw.pyi @@ -5,7 +5,7 @@ from typing_extensions import Literal from .Image import Image from .ImageFont import _Font -_Ink = Union[str, int, Tuple[int, int, int]] +_Ink = Union[str, int, Tuple[int, int, int], Tuple[int, int, int, int]] _XY = Sequence[Union[float, Tuple[float, float]]] _Outline = Any