Skip to content

Commit

Permalink
Fix PEP8 W391 issues (blank line at end of file).
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrueffer committed Oct 21, 2014
1 parent 28301fc commit ee20892
Show file tree
Hide file tree
Showing 14 changed files with 1 addition and 15 deletions.
1 change: 0 additions & 1 deletion BENTO_BUILD.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ No-frill version:
$ BENTO_ROOT/bentomaker build -p
# or with verbose output
$ BENTO_ROOT/bentomaker build -v

1 change: 0 additions & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.

1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,3 @@ License information
See the file ``LICENSE.txt`` for information on the history of this
software, terms & conditions for usage, and a DISCLAIMER OF ALL
WARRANTIES.

2 changes: 0 additions & 2 deletions scipy/interpolate/_monotone.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,5 +347,3 @@ def from_spline(cls, tck, extrapolate=None):
def from_bernstein_basis(cls, bp, extrapolate=None):
raise NotImplementedError("This method does not make sense for "
"an Akima interpolator.")


1 change: 0 additions & 1 deletion scipy/linalg/_expm_frechet.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,4 +401,3 @@ def expm_cond(A, check_finite=True):

kappa = (K_norm * A_norm) / X_norm
return kappa

1 change: 0 additions & 1 deletion scipy/linalg/_matfuncs_inv_ssq.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,4 +890,3 @@ def _logm(A):
X = np.empty_like(A)
X.fill(np.nan)
return X

1 change: 0 additions & 1 deletion scipy/linalg/tests/test_procrustes.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,3 @@ def test_orthogonal_procrustes_skbio_example():
B_approx = scale * np.dot(A, R) + B_mu
assert_allclose(B_approx, B_orig)
assert_allclose(B / norm(B), B_standardized)

2 changes: 1 addition & 1 deletion scipy/sparse/csgraph/tests/test_reordering.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ def test_graph_maximum_bipartite_matching():
Rmat = coo_matrix((Rdata,(Rrow,Rcol))).tocsc()
C3 = Rmat*B
assert_equal(any(C3.diagonal() == 0), False)

1 change: 0 additions & 1 deletion scipy/special/tests/test_orthogonal.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,4 +598,3 @@ def test_la_roots():
assert_raises(ValueError, orth.la_roots, 0, 2)
assert_raises(ValueError, orth.la_roots, 3.3, 2)
assert_raises(ValueError, orth.la_roots, 3, -1.1)

1 change: 0 additions & 1 deletion scipy/stats/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@

# special.zeta(3, 1) Apery's constant
_ZETA3 = 1.202056903159594285399738161511449990765

1 change: 0 additions & 1 deletion scipy/stats/_distr_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,3 @@
['skellam', (15, 8)],
['zipf', (6.5,)]
]

1 change: 0 additions & 1 deletion scipy/stats/distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@
# Add only the distribution names, not the *_gen names.
__all__ += _continuous_distns._distn_names
__all__ += _discrete_distns._distn_names

1 change: 0 additions & 1 deletion scipy/stats/tests/common_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,3 @@ def check_named_args(distfn, x, shape_args, defaults, meths):
# unknown arguments should not go through:
k.update({'kaboom': 42})
npt.assert_raises(TypeError, distfn.cdf, x, **k)

1 change: 0 additions & 1 deletion site.cfg.example
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,3 @@ include_dirs = /usr/local/include
#
#[umfpack]
#umfpack_libs = umfpack

0 comments on commit ee20892

Please sign in to comment.