Skip to content

Commit

Permalink
PEP8: Fix E111 indentation is not a multiple of four
Browse files Browse the repository at this point in the history
  • Loading branch information
timleslie committed Apr 12, 2013
1 parent 059a579 commit fc820a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scipy/sparse/linalg/isolve/lsmr.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def lsmr(A, b, damp=0.0, atol=1e-6, btol=1e-6, conlim=1e8,
# Estimate cond(A).
maxrbar = max(maxrbar, rhobarold)
if itn > 1:
minrbar= min(minrbar, rhobarold)
minrbar= min(minrbar, rhobarold)
condA = max(maxrbar, rhotemp) / min(minrbar, rhotemp)

# Test for convergence.
Expand Down
2 changes: 1 addition & 1 deletion scipy/stats/distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2445,7 +2445,7 @@ def _stats(self):
def _entropy(self):
return log(4*pi)
def _fitstart(self, data, args=None):
return (0, 1)
return (0, 1)
cauchy = cauchy_gen(name='cauchy')


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ commands=python {toxinidir}/tools/test-installed-scipy.py {posargs:}
[pep8]
max_line_length=200
statistics = True
ignore = E1,E2,E3,E4,E5,E7
ignore = E12,E2,E3,E4,E5,E7
exclude = scipy/sparse/linalg/dsolve/umfpack/_umfpack.py,scipy/sparse/sparsetools/bsr.py,scipy/sparse/sparsetools/coo.py,scipy/sparse/sparsetools/csc.py,scipy/sparse/sparsetools/csgraph.py,scipy/sparse/sparsetools/csr.py,scipy/sparse/sparsetools/dia.py

0 comments on commit fc820a1

Please sign in to comment.