Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed Apr 23, 2024
1 parent fdfb499 commit 1f516e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
"python": ("https://docs.python.org/3", None),
"anndata": ("https://anndata.readthedocs.io/en/stable/", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
"sklearn": ("https://scikit-learn.org/stable/", None),
}

# List of patterns, relative to source directory, that match files and
Expand Down
2 changes: 1 addition & 1 deletion src/fknni/faiss/faiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def transform(self, X: np.ndarray | pd.DataFrame) -> np.ndarray:
X: Data with missing values to impute. Expected to be either a NumPy array or a pandas DataFrame.
Returns:
X_imputed: Data with imputed values as a NumPy array.
Data with imputed values as a NumPy array.
"""
X = check_array(X, dtype=np.float32, force_all_finite="allow-nan")
check_is_fitted(self, "index_")
Expand Down

0 comments on commit 1f516e5

Please sign in to comment.