From 254f959c3a29f0b66be08e7fa74f97f00e276e8b Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 24 Oct 2018 19:09:35 +0300 Subject: [PATCH] flake8: E127 continuation line over-indented for visual indent --- Tests/test_image_filter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,