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_financial.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_financial.py')
-rw-r--r-- | numpy/lib/tests/test_financial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_financial.py b/numpy/lib/tests/test_financial.py index f02cfb36a..a4b9cfe2e 100644 --- a/numpy/lib/tests/test_financial.py +++ b/numpy/lib/tests/test_financial.py @@ -141,7 +141,7 @@ class TestFinancial(TestCase): def test_broadcast(self): assert_almost_equal(np.nper(0.075, -2000, 0, 100000., [0, 1]), - [21.5449442, 20.76156441], 4) + [21.5449442, 20.76156441], 4) assert_almost_equal(np.ipmt(0.1/12, list(range(5)), 24, 2000), [-17.29165168, -16.66666667, -16.03647345, |