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

Skip to content

Commit a0d5ca1

Browse files
committed
DOC Fix docstring issue in parametrize_with_checks (scikit-learn#16953)
1 parent 20e1da5 commit a0d5ca1

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