From 9c22425881565deb2ccef39e8bf8c55a3ba37f65 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 5 Sep 2020 13:32:59 +1000 Subject: [PATCH] Lint fix --- Tests/test_imagedraw.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Tests/test_imagedraw.py b/Tests/test_imagedraw.py index 1cd878e1c..0f9f20eb1 100644 --- a/Tests/test_imagedraw.py +++ b/Tests/test_imagedraw.py @@ -1175,8 +1175,20 @@ def test_compute_regular_polygon_vertices(n_sides, expected_vertices): ValueError, "bounding_circle centre should contain 2D coordinates (e.g. (x, y))", ), - (3, (50, 50, 0), 0, ValueError, "bounding_circle radius should be > 0",), - (3, (50, 50, 25), "0", ValueError, "rotation should be an int or float",), + ( + 3, + (50, 50, 0), + 0, + ValueError, + "bounding_circle radius should be > 0", + ), + ( + 3, + (50, 50, 25), + "0", + ValueError, + "rotation should be an int or float", + ), ], ) def test_compute_regular_polygon_vertices_input_error_handling(