From f77aabf28134d93e35ca2d5622759c856333beb9 Mon Sep 17 00:00:00 2001 From: Sumanth Date: Sun, 24 Apr 2022 18:42:37 +0530 Subject: [PATCH] Update Image.py docstrings. Update Image.py file with a typo in effect_mandelbrot method. The Typo was in docstrings of the effect_mandelbrot method in Image module of PIL. --- 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 3c36178bd..eb190a0f6 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -3327,7 +3327,7 @@ def effect_mandelbrot(size, extent, quality): :param size: The requested size in pixels, as a 2-tuple: (width, height). :param extent: The extent to cover, as a 4-tuple: - (x0, y0, x1, y2). + (x0, y0, x1, y1). :param quality: Quality. """ return Image()._new(core.effect_mandelbrot(size, extent, quality))