From 8e90f33dda3a54b941bfa7c1d90dff1bd5c21063 Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Sun, 20 Aug 2017 14:16:26 -0700 Subject: [PATCH] Type annotations: Clarify return type of Image.split. --- PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/Image.py b/PIL/Image.py index 69c303f15..f9d90649b 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -2051,7 +2051,7 @@ class Image(object): _show(self, title=title, command=command) def split(self): - # type: () -> Tuple + # type: () -> Tuple[Image, ...] """ Split this image into individual bands. This method returns a tuple of individual image bands from an image. For example,