Skip to content

Commit

Permalink
Merge pull request #123 from grlee77/misc_maint
Browse files Browse the repository at this point in the history
MAINT: remove some unused imports
  • Loading branch information
rgommers committed Oct 26, 2015
2 parents 4be1f6c + f00aa17 commit faf0291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pywt/multidim.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@

__all__ = ['dwt2', 'idwt2', 'swt2', 'dwtn', 'idwtn']

from itertools import cycle, product, repeat, islice
from itertools import cycle, product

import numpy as np

from ._pywt import Wavelet, MODES
from ._pywt import dwt, idwt, swt, downcoef, upcoef, dwt_axis, idwt_axis
from ._pywt import dwt, idwt, swt, dwt_axis, idwt_axis


def dwt2(data, wavelet, mode='sym'):
Expand Down

0 comments on commit faf0291

Please sign in to comment.