Skip to content

Commit a631e0b

Browse files
committed
fix: LIME formatting
1 parent 2dff12d commit a631e0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/trustyai/visualizations/lime.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ def _matplotlib_plot(
3030
for feature_importance in (
3131
explanations.saliency_map().get(output_name).getPerFeatureImportance()
3232
):
33-
dictionary[feature_importance.getFeature().name] = (
34-
feature_importance.getScore()
35-
)
33+
dictionary[
34+
feature_importance.getFeature().name
35+
] = feature_importance.getScore()
3636

3737
colours = [
3838
(

0 commit comments

Comments
 (0)