Skip to content

Commit c8a2e06

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2a3f86e commit c8a2e06

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/scanpy/preprocessing/_pca/_kernels.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from scanpy._compat import CSRBase
99

1010
if TYPE_CHECKING:
11-
from numpy.typing import DTypeLike, NDArray
11+
from numpy.typing import NDArray
1212

1313

1414
@njit
@@ -30,6 +30,7 @@ def _csr_gram_upper_triangular(
3030
for j in range(i):
3131
out[i, j] = out[j, i]
3232

33+
3334
@njit
3435
def _csr_gram_full(
3536
mat: CSRBase,

0 commit comments

Comments
 (0)