From be9ee98631eae49217f5cb3fce05fb609fac2040 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 19 Mar 2022 17:48:31 +1100 Subject: [PATCH] Removed period before colon --- src/PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 8213f79b1..0ff754af8 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -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