summaryrefslogtreecommitdiff
path: root/numpy/linalg
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-11-09 09:10:45 -0700
committerGitHub <noreply@github.com>2017-11-09 09:10:45 -0700
commit3402dcf9b4acd32e66a9b8a02ec34a0e02052a5d (patch)
treedf20ff12217e2c299f4ddff09c2cec525ced943e /numpy/linalg
parente3a50a964d64375f4058600006c59b9838c5284f (diff)
downloadnumpy-3402dcf9b4acd32e66a9b8a02ec34a0e02052a5d.tar.gz
STY: Fix PEP8 vertical alignment violation.
Diffstat (limited to 'numpy/linalg')
-rw-r--r--numpy/linalg/linalg.py2
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)