From e33812c56cf5d00015e598d14f02f972db0e6ed4 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sun, 21 Oct 2018 17:05:40 +0300 Subject: [PATCH] Remove redundant parentheses --- Tests/test_format_hsv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_format_hsv.py b/Tests/test_format_hsv.py index 8728c484b..0385bd66f 100644 --- a/Tests/test_format_hsv.py +++ b/Tests/test_format_hsv.py @@ -17,7 +17,7 @@ class TestFormatHSV(PillowTestCase): def tuple_to_ints(self, tp): x, y, z = tp - return (int(x*255.0), int(y*255.0), int(z*255.0)) + return int(x*255.0), int(y*255.0), int(z*255.0) def test_sanity(self): Image.new('HSV', (100, 100))