From 910236feaec8a547139d650f7e3bf94544e041cb 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. --- src/PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 3e680d615..4675c01e3 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -2062,7 +2062,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,