Type annotations: Image.py: Amend Image.resize given new parameter.

This commit is contained in:
neiljp (Neil Pilgrim) 2017-08-31 11:52:36 -07:00
parent 26bac897ff
commit 446c38ca19

View File

@ -1772,7 +1772,7 @@ class Image(object):
return m_im return m_im
def resize(self, size, resample=NEAREST, box=None): def resize(self, size, resample=NEAREST, box=None):
# type: (Size, int) -> Image # type: (Size, int, Optional[LURD]) -> Image
""" """
Returns a resized copy of this image. Returns a resized copy of this image.