Remove redundant parentheses

This commit is contained in:
Hugo 2018-10-21 17:05:40 +03:00
parent cbba2c24bf
commit e33812c56c

View File

@ -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))