Update Tests/test_imageops.py

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
Marcelo-MConti 2025-12-14 11:34:09 -03:00 committed by GitHub
parent 4d9f78ee6f
commit 2a006446af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -606,7 +606,7 @@ def test_autocontrast_preserve_one_color(color: tuple[int, int, int]) -> None:
assert_image_equal(img, out)
def test_dither_primary_returns_image():
def test_dither_primary_returns_image() -> None:
im = Image.new("RGB", (4, 4), (128, 128, 128))
out = ImageOps.dither_primary(im)