Skip to content

Commit 7b1089d

Browse files
committed
Fix flake8
1 parent 11e8f25 commit 7b1089d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/algos.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ def nancorr(const float64_t[:, :] mat, bint cov=False, minp=None):
268268
ndarray[float64_t, ndim=2] result
269269
ndarray[uint8_t, ndim=2] mask
270270
int64_t nobs = 0
271-
float64_t vx, vy, meanx, meany, divisor, prev_meany, prev_meanx, ssqdmx, ssqdmy, covxy
271+
float64_t vx, vy, meanx, meany, divisor, prev_meany, prev_meanx, ssqdmx,
272+
float64_t ssqdmy, covxy
272273

273274
N, K = (<object>mat).shape
274275

@@ -313,7 +314,6 @@ def nancorr(const float64_t[:, :] mat, bint cov=False, minp=None):
313314
# Pairwise Spearman correlation
314315

315316

316-
317317
@cython.boundscheck(False)
318318
@cython.wraparound(False)
319319
def nancorr_spearman(const float64_t[:, :] mat, Py_ssize_t minp=1) -> ndarray:

0 commit comments

Comments
 (0)