From b7009e8630ee0860ada588b1f2df5d605ab49d60 Mon Sep 17 00:00:00 2001 From: Chris Kerr Date: Thu, 6 Nov 2014 09:58:27 +0000 Subject: [PATCH] Fixed some pyflakes warnings by removing unused imports --- BioLogic.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BioLogic.py b/BioLogic.py index 115b70f..378457b 100644 --- a/BioLogic.py +++ b/BioLogic.py @@ -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