Merge pull request #6143 from radarhere/period

Removed period before colon
This commit is contained in:
Hugo van Kemenade 2022-03-19 10:03:45 +02:00 committed by GitHub
commit 15dc291469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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