From 4d9f78ee6f89fa8da7f2e44fd9b6eb39bf5e1e38 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 22:40:10 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- Tests/test_imageops.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/test_imageops.py b/Tests/test_imageops.py index 0904aa012..0b0bd1295 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -605,6 +605,7 @@ def test_autocontrast_preserve_one_color(color: tuple[int, int, int]) -> None: ) # single color 10 cutoff assert_image_equal(img, out) + def test_dither_primary_returns_image(): im = Image.new("RGB", (4, 4), (128, 128, 128)) out = ImageOps.dither_primary(im)