mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-04-27 20:43:43 +03:00
Removed unnecessary return statements
This commit is contained in:
parent
9e843a2d9b
commit
2ac18689d5
|
@ -416,7 +416,6 @@ class TestImage(PillowTestCase):
|
||||||
# Act / Assert
|
# Act / Assert
|
||||||
self.assertRaises(ValueError,
|
self.assertRaises(ValueError,
|
||||||
Image.linear_gradient, wrong_mode)
|
Image.linear_gradient, wrong_mode)
|
||||||
return
|
|
||||||
|
|
||||||
def test_linear_gradient(self):
|
def test_linear_gradient(self):
|
||||||
|
|
||||||
|
@ -442,7 +441,6 @@ class TestImage(PillowTestCase):
|
||||||
# Act / Assert
|
# Act / Assert
|
||||||
self.assertRaises(ValueError,
|
self.assertRaises(ValueError,
|
||||||
Image.radial_gradient, wrong_mode)
|
Image.radial_gradient, wrong_mode)
|
||||||
return
|
|
||||||
|
|
||||||
def test_radial_gradient(self):
|
def test_radial_gradient(self):
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user