Skip to content

Commit 040f44d

Browse files
committed
Linting after merge
1 parent 3ead137 commit 040f44d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/exploratory_analyses/feature_importance_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,15 @@ def test_empty_data():
5151
model=classifier, x_test=data, y_test=empty_labels, feature_names=feature_names
5252
)
5353

54+
5455
def test_invalid_n_repeats():
5556
"""Test that invalid value for 'n_repeats' raises exception."""
5657
with pytest.raises(InvalidParameterValueException):
5758
_, _ = evaluate_feature_importance(
5859
model=classifier, x_test=data, y_test=labels, feature_names=feature_names, n_repeats=0
5960
)
6061

62+
6163
def test_model_output():
6264
"""Test that function output is as expected."""
6365
classifier.fit(data, labels.ravel())

0 commit comments

Comments
 (0)