mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-27 23:54:46 +03:00
Type annotations: Clarify return type of Image.split.
This commit is contained in:
parent
0ac87cc06b
commit
8e90f33dda
|
@ -2051,7 +2051,7 @@ class Image(object):
|
||||||
_show(self, title=title, command=command)
|
_show(self, title=title, command=command)
|
||||||
|
|
||||||
def split(self):
|
def split(self):
|
||||||
# type: () -> Tuple
|
# type: () -> Tuple[Image, ...]
|
||||||
"""
|
"""
|
||||||
Split this image into individual bands. This method returns a
|
Split this image into individual bands. This method returns a
|
||||||
tuple of individual image bands from an image. For example,
|
tuple of individual image bands from an image. For example,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user