mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-18 03:04:45 +03:00
fixed PEP8: E501 line too long (94 > 79 characters)
This commit is contained in:
parent
f3e515d2c9
commit
42cc67f3eb
|
@ -290,7 +290,12 @@ class TestFileGif(PillowTestCase):
|
|||
Image.new('L', (100, 100), '#111'),
|
||||
Image.new('L', (100, 100), '#222'),
|
||||
]
|
||||
im_list[0].save(out, save_all=True, append_images=im_list[1:], duration=duration_list)
|
||||
im_list[0].save(
|
||||
out,
|
||||
save_all=True,
|
||||
append_images=im_list[1:],
|
||||
duration=duration_list
|
||||
)
|
||||
reread = Image.open(out)
|
||||
|
||||
for duration in duration_list:
|
||||
|
|
Loading…
Reference in New Issue
Block a user