mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-12 17:22:28 +03:00
Removed unnecessary line from ImageOps
This commit is contained in:
parent
9794aafc37
commit
8193a07305
|
@ -233,7 +233,6 @@ def expand(image, border=0, fill=0):
|
||||||
:param fill: Pixel fill value (a color value). Default is 0 (black).
|
:param fill: Pixel fill value (a color value). Default is 0 (black).
|
||||||
:return: An image.
|
:return: An image.
|
||||||
"""
|
"""
|
||||||
"Add border to image"
|
|
||||||
left, top, right, bottom = _border(border)
|
left, top, right, bottom = _border(border)
|
||||||
width = left + image.size[0] + right
|
width = left + image.size[0] + right
|
||||||
height = top + image.size[1] + bottom
|
height = top + image.size[1] + bottom
|
||||||
|
|
Loading…
Reference in New Issue
Block a user