TypeError: bbknn() got an unexpected keyword argument 'n_trees'

Hello,when I do sc.external.pp.bbknn(adata, batch_key='group'),it says
computing batch balanced neighbors

TypeError Traceback (most recent call last)
/tmp/ipykernel_173326/1738178704.py in
----> 1 sc.external.pp.bbknn(adata, batch_key=‘group’,n_trees=0)

~/.local/lib/python3.7/site-packages/scanpy/external/pp/_bbknn.py in bbknn(adata, batch_key, approx, metric, copy, n_pcs, trim, n_trees, use_faiss, set_op_mix_ratio, local_connectivity, **kwargs)
118 set_op_mix_ratio=set_op_mix_ratio,
119 local_connectivity=local_connectivity,
→ 120 **kwargs,
121 )

~/.local/lib/python3.7/site-packages/bbknn/init.py in bbknn(adata, batch_key, use_rep, approx, use_annoy, metric, copy, **kwargs)
123 #call BBKNN proper
124 bbknn_out = bbknn_matrix(pca=pca, batch_list=batch_list, approx=approx,
→ 125 use_annoy=use_annoy, metric=params[‘metric’], **kwargs)
126 #store the parameters in .uns[‘neighbors’][‘params’], add use_rep and batch_key
127 adata.uns[‘neighbors’] = {}

TypeError: bbknn() got an unexpected keyword argument ‘n_trees’
How to deal with it ?
Thanks