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)