remove unused imports

This commit is contained in:
Jakub Wilk 2015-03-06 22:51:58 +01:00
parent 53968c31e0
commit 5d7975164d
3 changed files with 0 additions and 4 deletions

View file

@ -20,7 +20,6 @@
import sys import sys
import zlib import zlib
import argparse import argparse
import struct
from PIL import Image from PIL import Image
from datetime import datetime from datetime import datetime
from jp2 import parsejp2 from jp2 import parsejp2

View file

@ -20,7 +20,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import struct import struct
import sys
def getBox(data, byteStart, noBytes): def getBox(data, byteStart, noBytes):
boxLengthValue = struct.unpack(">I", data[byteStart:byteStart+4])[0] boxLengthValue = struct.unpack(">I", data[byteStart:byteStart+4])[0]

View file

@ -1,8 +1,6 @@
import unittest import unittest
import datetime
import os import os
import unittest
import img2pdf import img2pdf
import zlib import zlib
from PIL import Image from PIL import Image