Removed unnecessary line from ImageOps

This commit is contained in:
Andrew Murray 2015-04-01 23:52:59 +11:00
parent 9794aafc37
commit 8193a07305

View File

@ -233,7 +233,6 @@ def expand(image, border=0, fill=0):
:param fill: Pixel fill value (a color value). Default is 0 (black).
:return: An image.
"""
"Add border to image"
left, top, right, bottom = _border(border)
width = left + image.size[0] + right
height = top + image.size[1] + bottom