Skip to content

Commit bddb1f4

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ALLCools/clustering/balanced_pca.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def significant_pc_test(adata: anndata.AnnData, p_cutoff=0.1, update=True, obsm=
120120
def pc_ks_test(pcs, p_cutoff=0.1, min_pc=4):
121121
i = 0
122122
for i in range(pcs.shape[1]):
123-
if i == (pcs.shape[1]-1):
123+
if i == (pcs.shape[1] - 1):
124124
break
125125
cur_pc = pcs[:, i]
126126
next_pc = pcs[:, i + 1]

0 commit comments

Comments
 (0)