Type annotations: Clarify return type of Image.split.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-08-20 14:16:26 -07:00
parent 0ac87cc06b
commit 8e90f33dda

View File

@ -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,