summaryrefslogtreecommitdiff
path: root/numpy/fft/fftpack.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-07-31 17:39:17 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-07-31 17:40:40 -0600
commit4e7ae3db32331fc2c73ceb272f54746ae71e6428 (patch)
treecacd6a4f85f35e575f431a444198f8813d9b9376 /numpy/fft/fftpack.py
parent01b0d7e82211b581aaff925e3ccc36cff9ac1895 (diff)
downloadnumpy-4e7ae3db32331fc2c73ceb272f54746ae71e6428.tar.gz
STY: minor PEP8 fixups for numpy/fft.
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r--numpy/fft/fftpack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py
index 706fcdd2f..4efb2a9a0 100644
--- a/numpy/fft/fftpack.py
+++ b/numpy/fft/fftpack.py
@@ -43,7 +43,7 @@ _fft_cache = {}
_real_fft_cache = {}
def _raw_fft(a, n=None, axis=-1, init_function=fftpack.cffti,
- work_function=fftpack.cfftf, fft_cache = _fft_cache ):
+ work_function=fftpack.cfftf, fft_cache=_fft_cache):
a = asarray(a)
if n is None: