mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-11 17:56:18 +03:00
Remove redundant parentheses
This commit is contained in:
parent
cbba2c24bf
commit
e33812c56c
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue
Block a user