diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-30 15:14:11 -0600 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-07-31 21:08:04 +0200 |
commit | 0b5a6645ee110a8d4c6b5defd8c01791ee48bda1 (patch) | |
tree | dad4ce39a2a89e0655c9cd4b67e66fff90892f1c /numpy/lib/tests/test__datasource.py | |
parent | b2955ede452b8ca2aae5d0b035cd19c8a3b12480 (diff) | |
download | numpy-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.py | 2 |
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 |