Skip to content

Commit

Permalink
explainability: remove enumerate call
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Nov 15, 2024
1 parent 29f4acd commit 00e4b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_explainability/test_shap_tree_explainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_explanations_pipeline_with_invalid_inputs(self) -> None:
n_bits = 64

for estimator in estimators:
for fill_value in enumerate(fill_values):
for fill_value in fill_values:

# pipeline with ErrorFilter
error_filter1 = ErrorFilter()
Expand Down

0 comments on commit 00e4b72

Please sign in to comment.