From 23a61b00b508c803cc5442a69f0cca5264c5c8c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag=20W=C3=A4stberg?= Date: Fri, 22 Nov 2019 14:47:51 +0100 Subject: [PATCH] fix formatting --- src/PIL/ImageChops.py | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/PIL/ImageChops.py b/src/PIL/ImageChops.py index 751152f71..1dc456156 100644 --- a/src/PIL/ImageChops.py +++ b/src/PIL/ImageChops.py @@ -163,30 +163,6 @@ def hardlight(image1, image2): return image1._new(image1.im.chop_hardlight(image2.im)) -def softlight(image1, image2): - """ - Superimposes two images on top of each other using the Soft Light algorithm - - :rtype: :py:class:`~PIL.Image.Image` - """ - - image1.load() - image2.load() - return image1._new(image1.im.chop_softlight(image2.im)) - - -def hardlight(image1, image2): - """ - Superimposes two images on top of each other using the Hard Light algorithm - - :rtype: :py:class:`~PIL.Image.Image` - """ - - image1.load() - image2.load() - return image1._new(image1.im.chop_hardlight(image2.im)) - - def overlay(image1, image2): """ Superimposes two images on top of each other using the Overlay algorithm