summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test__datasource.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-07-30 15:14:11 -0600
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-07-31 21:08:04 +0200
commit0b5a6645ee110a8d4c6b5defd8c01791ee48bda1 (patch)
treedad4ce39a2a89e0655c9cd4b67e66fff90892f1c /numpy/lib/tests/test__datasource.py
parentb2955ede452b8ca2aae5d0b035cd19c8a3b12480 (diff)
downloadnumpy-0b5a6645ee110a8d4c6b5defd8c01791ee48bda1.tar.gz
STY: PEP8 compliance for numpy/lib/tests.
The possibly controversial part of this is making the nested array value lists PEP8 compliant, as there is something to be said aligning the values for clarity. In the end, it seemed like the easiest thing to do was to make them PEP8 compliant. The eye can get used to that.
Diffstat (limited to 'numpy/lib/tests/test__datasource.py')
-rw-r--r--numpy/lib/tests/test__datasource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test__datasource.py b/numpy/lib/tests/test__datasource.py
index 89198f2bf..090f71f67 100644
--- a/numpy/lib/tests/test__datasource.py
+++ b/numpy/lib/tests/test__datasource.py
@@ -66,7 +66,7 @@ def valid_textfile(filedir):
def invalid_textfile(filedir):
# Generate and return an invalid filename.
- fd, path = mkstemp(suffix='.txt', prefix='dstmp_', dir=filedir)
+ fd, path = mkstemp(suffix='.txt', prefix='dstmp_', dir=filedir)
os.close(fd)
os.remove(path)
return path