diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-11-09 09:10:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 09:10:45 -0700 |
commit | 3402dcf9b4acd32e66a9b8a02ec34a0e02052a5d (patch) | |
tree | df20ff12217e2c299f4ddff09c2cec525ced943e /numpy/linalg | |
parent | e3a50a964d64375f4058600006c59b9838c5284f (diff) | |
download | numpy-3402dcf9b4acd32e66a9b8a02ec34a0e02052a5d.tar.gz |
STY: Fix PEP8 vertical alignment violation.
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/linalg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 5cb381d3e..8bc1b14d3 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -2046,7 +2046,7 @@ def lstsq(a, b, rcond="warn"): b_out = bstar.T # b_out contains both the solution and the components of the residuals - x = b_out[:n,:] + x = b_out[:n,:] r_parts = b_out[n:,:] if isComplexType(t): resids = sum(abs(r_parts)**2, axis=-2) |