Skip to content

Commit 2c6258b

Browse files
committed
Updated indents
1 parent 9d101bf commit 2c6258b

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

src/PIL/ImageFilter.py

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,13 @@ class Kernel(BuiltinFilter):
4242
4343
Kernels can only be applied to "L" and "RGB" images.
4444
45-
:param size: Kernel size, given as (width, height).
46-
This must be (3,3) or (5,5).
47-
:param kernel: A sequence containing kernel weights. The kernel will
48-
be flipped vertically before being applied to the image.
49-
:param scale: Scale factor. If given, the result for each pixel is
50-
divided by this value. The default is the sum of the
51-
kernel weights.
52-
:param offset: Offset. If given, this value is added to the result,
53-
after it has been divided by the scale factor.
45+
:param size: Kernel size, given as (width, height). This must be (3,3) or (5,5).
46+
:param kernel: A sequence containing kernel weights. The kernel will be flipped
47+
vertically before being applied to the image.
48+
:param scale: Scale factor. If given, the result for each pixel is divided by this
49+
value. The default is the sum of the kernel weights.
50+
:param offset: Offset. If given, this value is added to the result, after it has
51+
been divided by the scale factor.
5452
"""
5553

5654
name = "Kernel"

0 commit comments

Comments
 (0)