Removed period before colon

This commit is contained in:
Andrew Murray 2022-03-19 17:48:31 +11:00
parent 625d7accd6
commit be9ee98631

View File

@ -3138,7 +3138,7 @@ def alpha_composite(im1, im2):
def blend(im1, im2, alpha):
"""
Creates a new image by interpolating between two input images, using
a constant alpha.::
a constant alpha::
out = image1 * (1.0 - alpha) + image2 * alpha