mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 01:34:24 +03:00
Removed unused imports
This commit is contained in:
parent
bad730ecff
commit
62b2bdf909
|
@ -258,7 +258,6 @@ class TestEmbeddable(unittest.TestCase):
|
||||||
def test_embeddable(self):
|
def test_embeddable(self):
|
||||||
import subprocess
|
import subprocess
|
||||||
import ctypes
|
import ctypes
|
||||||
import setuptools
|
|
||||||
from distutils import ccompiler, sysconfig
|
from distutils import ccompiler, sysconfig
|
||||||
|
|
||||||
with open('embed_pil.c', 'w') as fh:
|
with open('embed_pil.c', 'w') as fh:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from helper import unittest, PillowTestCase, py3
|
from helper import unittest, PillowTestCase
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
from helper import unittest, PillowTestCase, hopper
|
from helper import unittest, PillowTestCase, hopper
|
||||||
|
|
||||||
from PIL import Image
|
|
||||||
|
|
||||||
|
|
||||||
class TestUploader(PillowTestCase):
|
class TestUploader(PillowTestCase):
|
||||||
def check_upload_equal(self):
|
def check_upload_equal(self):
|
||||||
|
|
|
@ -23,10 +23,9 @@
|
||||||
|
|
||||||
|
|
||||||
from . import Image, ImageFile
|
from . import Image, ImageFile
|
||||||
from ._binary import i8, o8, i16be as i16, o16be as o16
|
from ._binary import i8, o8, i16be as i16
|
||||||
import struct
|
import struct
|
||||||
import os
|
import os
|
||||||
import sys
|
|
||||||
|
|
||||||
|
|
||||||
__version__ = "0.3"
|
__version__ = "0.3"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user