Skip to content

Commit 8be48a9

Browse files
committed
Formatting
Signed-off-by: abigailt <[email protected]>
1 parent 1283402 commit 8be48a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/estimators/classification/test_scikitlearn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ def test_multi_label(self):
9898
model = ScikitlearnDecisionTreeClassifier(model=underlying_model)
9999

100100
pred = model.predict(x_test)
101-
assert (pred[0].shape[0] == x_test.shape[0])
102-
assert (isinstance(model.nb_classes, np.ndarray))
101+
assert pred[0].shape[0] == x_test.shape[0]
102+
assert isinstance(model.nb_classes, np.ndarray)
103103
with self.assertRaises(TypeError):
104104
check_and_transform_label_format(y_train, nb_classes=model.nb_classes)
105105

0 commit comments

Comments
 (0)