From fdf828025bac51f8218ac08c7ab07a93865edd11 Mon Sep 17 00:00:00 2001 From: Tsung-Po Sun Date: Sun, 31 Jan 2021 15:44:14 +0900 Subject: [PATCH] fix lint --- Tests/test_imagedraw.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/test_imagedraw.py b/Tests/test_imagedraw.py index e236ba6d1..db89caf35 100644 --- a/Tests/test_imagedraw.py +++ b/Tests/test_imagedraw.py @@ -1327,6 +1327,7 @@ def test_compute_regular_polygon_vertices_input_error_handling( ImageDraw._compute_regular_polygon_vertices(bounding_circle, n_sides, rotation) assert str(e.value) == error_message + def test_continuous_horizontal_edges_polygon(): with Image.open( os.path.join(IMAGES_PATH, "continuous_horizontal_edges_polygon.png") @@ -1343,7 +1344,7 @@ def test_continuous_horizontal_edges_polygon(): (4, 8), (3, 8), (2, 8), - (2, 7) + (2, 7), ] img, draw = create_base_image_draw((16, 16)) draw.polygon(xy, BLACK)