Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion maint_tools/test_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

# List of modules ignored when checking for numpydoc validation.
DOCSTRING_IGNORE_LIST = [
"Birch",
"GammaRegressor",
"GaussianProcessRegressor",
"GaussianRandomProjection",
Expand Down
4 changes: 2 additions & 2 deletions sklearn/cluster/_birch.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def __init__(
# TODO: Remove in 1.2
# mypy error: Decorated property not supported
@deprecated( # type: ignore
"`fit_` is deprecated in 1.0 and will be removed in 1.2"
"`fit_` is deprecated in 1.0 and will be removed in 1.2."
)
@property
def fit_(self):
Expand All @@ -489,7 +489,7 @@ def fit_(self):
# TODO: Remove in 1.2
# mypy error: Decorated property not supported
@deprecated( # type: ignore
"`partial_fit_` is deprecated in 1.0 and will be removed in 1.2"
"`partial_fit_` is deprecated in 1.0 and will be removed in 1.2."
)
@property
def partial_fit_(self):
Expand Down