From e6923509deff298da3d238947c18f52960eab40b Mon Sep 17 00:00:00 2001 From: Marcelo-MConti Date: Fri, 12 Dec 2025 19:33:38 -0300 Subject: [PATCH] Fix minor issue in dither_primary implementation --- Tests/test_imageops.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tests/test_imageops.py b/Tests/test_imageops.py index 485a8e443..0904aa012 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -605,10 +605,6 @@ def test_autocontrast_preserve_one_color(color: tuple[int, int, int]) -> None: ) # single color 10 cutoff assert_image_equal(img, out) - -from PIL import ImageOps - - def test_dither_primary_returns_image(): im = Image.new("RGB", (4, 4), (128, 128, 128)) out = ImageOps.dither_primary(im)