mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 17:36:18 +03:00
Removed duplicate imports
This commit is contained in:
parent
62b2bdf909
commit
30b2ddd070
|
@ -475,8 +475,6 @@ class TestFileGif(PillowTestCase):
|
||||||
# that's > 128 items where the transparent color is actually
|
# that's > 128 items where the transparent color is actually
|
||||||
# the top palette entry to trigger the bug.
|
# the top palette entry to trigger the bug.
|
||||||
|
|
||||||
from PIL import ImagePalette
|
|
||||||
|
|
||||||
data = bytes(bytearray(range(1, 254)))
|
data = bytes(bytearray(range(1, 254)))
|
||||||
palette = ImagePalette.ImagePalette("RGB", list(range(256))*3)
|
palette = ImagePalette.ImagePalette("RGB", list(range(256))*3)
|
||||||
|
|
||||||
|
|
|
@ -576,7 +576,6 @@ class TestFileCloseW32(PillowTestCase):
|
||||||
|
|
||||||
def test_fd_leak(self):
|
def test_fd_leak(self):
|
||||||
tmpfile = self.tempfile("temp.jpg")
|
tmpfile = self.tempfile("temp.jpg")
|
||||||
import os
|
|
||||||
|
|
||||||
with Image.open("Tests/images/hopper.jpg") as im:
|
with Image.open("Tests/images/hopper.jpg") as im:
|
||||||
im.save(tmpfile)
|
im.save(tmpfile)
|
||||||
|
|
|
@ -388,7 +388,6 @@ class TestFileTiff(PillowTestCase):
|
||||||
'y_resolution': 36}
|
'y_resolution': 36}
|
||||||
filename = self.tempfile("temp.tif")
|
filename = self.tempfile("temp.tif")
|
||||||
hopper("RGB").save(filename, **kwargs)
|
hopper("RGB").save(filename, **kwargs)
|
||||||
from PIL.TiffImagePlugin import X_RESOLUTION, Y_RESOLUTION
|
|
||||||
im = Image.open(filename)
|
im = Image.open(filename)
|
||||||
|
|
||||||
# legacy interface
|
# legacy interface
|
||||||
|
|
Loading…
Reference in New Issue
Block a user