Skip to content

Commit a71fa5b

Browse files
committed
reformatted after fix
1 parent ebc6d49 commit a71fa5b

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

tests/test_experimental/test_uncertainty/test_conformal.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ def test_unified_conformal_classifier(self) -> None:
3838
def test_unified_conformal_regressor(self) -> None:
3939
"""Test UnifiedConformalCV with a regressor."""
4040
x, y, _ = make_regression(
41-
n_samples=100, n_features=10, random_state=42, coef=True,
41+
n_samples=100,
42+
n_features=10,
43+
random_state=42,
44+
coef=True,
4245
)
4346
x_train, x_calib, y_train, y_calib = train_test_split(
4447
x,
@@ -70,7 +73,10 @@ def test_cross_conformal_classifier(self) -> None:
7073
def test_cross_conformal_regressor(self) -> None:
7174
"""Test CrossConformalCV with a regressor."""
7275
x, y, _ = make_regression(
73-
n_samples=100, n_features=10, random_state=42, coef=True,
76+
n_samples=100,
77+
n_features=10,
78+
random_state=42,
79+
coef=True,
7480
)
7581
reg = RandomForestRegressor(random_state=42)
7682
ccp = CrossConformalCV(reg, estimator_type="regressor", n_folds=3)

0 commit comments

Comments
 (0)