diff --git a/Tests/test_image_filter.py b/Tests/test_image_filter.py index 6936a84f0..5e732b345 100644 --- a/Tests/test_image_filter.py +++ b/Tests/test_image_filter.py @@ -106,7 +106,7 @@ class TestImageFilter(PillowTestCase): def test_consistency_3x3(self): source = Image.open("Tests/images/hopper.bmp") reference = Image.open("Tests/images/hopper_emboss.bmp") - kernel = ImageFilter.Kernel((3, 3), + kernel = ImageFilter.Kernel((3, 3), # noqa: E127 (-1, -1, 0, -1, 0, 1, 0, 1, 1), .3) @@ -122,7 +122,7 @@ class TestImageFilter(PillowTestCase): def test_consistency_5x5(self): source = Image.open("Tests/images/hopper.bmp") reference = Image.open("Tests/images/hopper_emboss_more.bmp") - kernel = ImageFilter.Kernel((5, 5), + kernel = ImageFilter.Kernel((5, 5), # noqa: E127 (-1, -1, -1, -1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1,