Fixed some pyflakes warnings by removing unused imports

This commit is contained in:
Chris Kerr
2014-11-06 09:58:27 +00:00
parent ef6e7335e9
commit b7009e8630

View File

@@ -6,11 +6,10 @@ __all__ = ['MPTfileCSV', 'MPTfile']
import sys
import re
import csv
from os import SEEK_SET, SEEK_CUR
from os import SEEK_SET
import time
from datetime import date, datetime, timedelta
from collections import OrderedDict, defaultdict
from warnings import warn
from collections import OrderedDict
import numpy as np