8000 DOC Fix docstring issue in parametrize_with_checks (#16953) · viclafargue/scikit-learn@3e0f91f · GitHub
[go: up one dir, main page]

Skip to content

Commit 3e0f91f

Browse files
thomasjpfanviclafargue
authored andcommitted
DOC Fix docstring issue in parametrize_with_checks (scikit-learn#16953)
1 parent 84f32ef commit 3e0f91f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sklearn/utils/estimator_checks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ def parametrize_with_checks(estimators):
407407
>>> from sklearn.tree import DecisionTreeRegressor
408408
409409
>>> @parametrize_with_checks([LogisticRegression, DecisionTreeRegressor])
410-
>>> def test_sklearn_compatible_estimator(estimator, check):
411-
>>> check(estimator)
410+
... def test_sklearn_compatible_estimator(estimator, check):
411+
... check(estimator)
412412
413413
"""
414414
import pytest

0 commit comments

Comments
 (0)
0