mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 02:06:18 +03:00
flake8: E127 continuation line over-indented for visual indent
This commit is contained in:
parent
94c94eb1f7
commit
254f959c3a
|
@ -106,7 +106,7 @@ class TestImageFilter(PillowTestCase):
|
||||||
def test_consistency_3x3(self):
|
def test_consistency_3x3(self):
|
||||||
source = Image.open("Tests/images/hopper.bmp")
|
source = Image.open("Tests/images/hopper.bmp")
|
||||||
reference = Image.open("Tests/images/hopper_emboss.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, -1, 0,
|
||||||
-1, 0, 1,
|
-1, 0, 1,
|
||||||
0, 1, 1), .3)
|
0, 1, 1), .3)
|
||||||
|
@ -122,7 +122,7 @@ class TestImageFilter(PillowTestCase):
|
||||||
def test_consistency_5x5(self):
|
def test_consistency_5x5(self):
|
||||||
source = Image.open("Tests/images/hopper.bmp")
|
source = Image.open("Tests/images/hopper.bmp")
|
||||||
reference = Image.open("Tests/images/hopper_emboss_more.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, -1, 0,
|
||||||
-1, -1, -1, 0, 1,
|
-1, -1, -1, 0, 1,
|
||||||
-1, -1, 0, 1, 1,
|
-1, -1, 0, 1, 1,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user