Merge pull request #6241 from insumanth/mandelbrot_typo

Update Image.py docstring
This commit is contained in:
mergify[bot] 2022-04-24 23:48:35 +00:00 committed by GitHub
commit 439d197add
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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))