Removed unused imports

This commit is contained in:
Andrew Murray 2017-03-03 21:32:31 +11:00
parent 0b93853fd8
commit 798fde57ca
7 changed files with 8 additions and 10 deletions

View File

@ -25,7 +25,7 @@ import io
import os import os
import sys import sys
from . import Image, ImageFile from . import Image, ImageFile
from ._binary import i32le as i32, o32le as o32 from ._binary import i32le as i32
__version__ = "0.5" __version__ = "0.5"

View File

@ -508,7 +508,6 @@ def _save_netpbm(im, fp, filename):
import os import os
from subprocess import Popen, check_call, PIPE, CalledProcessError from subprocess import Popen, check_call, PIPE, CalledProcessError
import tempfile
file = im._dump() file = im._dump()
with open(filename, 'wb') as f: with open(filename, 'wb') as f:

View File

@ -39,7 +39,7 @@ import struct
import io import io
import warnings import warnings
from . import Image, ImageFile, TiffImagePlugin from . import Image, ImageFile, TiffImagePlugin
from ._binary import i8, o8, i16be as i16, i32be as i32 from ._binary import i8, o8, i16be as i16
from .JpegPresets import presets from .JpegPresets import presets
from ._util import isStringType from ._util import isStringType

View File

@ -37,7 +37,7 @@ import zlib
import struct import struct
from . import Image, ImageFile, ImagePalette from . import Image, ImageFile, ImagePalette
from ._binary import i8, i16be as i16, i32be as i32, o8, o16be as o16, o32be as o32 from ._binary import i8, i16be as i16, i32be as i32, o16be as o16, o32be as o32
__version__ = "0.9" __version__ = "0.9"

View File

@ -18,7 +18,7 @@
from . import Image, ImageFile, ImagePalette from . import Image, ImageFile, ImagePalette
from ._binary import i8, i16le as i16, o8, o16le as o16, o32le as o32 from ._binary import i8, i16le as i16, o8, o16le as o16
__version__ = "0.3" __version__ = "0.3"

View File

@ -1,4 +1,4 @@
from helper import unittest, PillowTestCase, hopper, py3 from helper import unittest, PillowTestCase, hopper
from helper import djpeg_available, cjpeg_available from helper import djpeg_available, cjpeg_available
from io import BytesIO from io import BytesIO

View File

@ -1,6 +1,5 @@
from helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
from io import BytesIO
class TestFileWmf(PillowTestCase): class TestFileWmf(PillowTestCase):