Skip to content

Commit fedec63

Browse files
committed
test: Disable pylint false positive
1 parent 3c41771 commit fedec63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/trustyai/visualizations/distance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class DistanceViz:
99

1010
def plot(self, explanations):
1111
"""Plot the Levenshtein distance matrix"""
12-
cmap = plt.cm.viridis
12+
cmap = plt.cm.viridis # pylint: disable=no-member
1313

1414
_, axes = plt.subplots()
1515
cax = axes.imshow(explanations.matrix, cmap=cmap, interpolation="nearest")

0 commit comments

Comments
 (0)