Skip to content

Commit 11e8f25

Browse files
committed
Delete inline comment
1 parent 168d78d commit 11e8f25

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pandas/_libs/algos.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ def nancorr(const float64_t[:, :] mat, bint cov=False, minp=None):
302302
else:
303303
divisor = (nobs - 1.0) if cov else sqrt(ssqdmx * ssqdmy)
304304

305-
# numerical issues for constant columns
306305
if divisor != 0:
307306
result[xi, yi] = result[yi, xi] = covxy / divisor
308307
else:

0 commit comments

Comments
 (0)