Skip to content

Commit

Permalink
Removing 'write_knn_indices' arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Abelgurung committed Apr 7, 2024
1 parent b2f31b3 commit 1953452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scvelo/preprocessing/neighbors.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _get_scanpy_neighbors(adata: AnnData, **kwargs):
with warnings.catch_warnings(): # ignore numba warning (umap/issues/252)
warnings.simplefilter("ignore")
neighbors = Neighbors(adata)
neighbors.compute_neighbors(write_knn_indices=True, **kwargs)
neighbors.compute_neighbors(**kwargs)
logg.switch_verbosity("on", module="scanpy")

return neighbors
Expand Down

0 comments on commit 1953452

Please sign in to comment.