Skip to content

Commit

Permalink
Fix: do not annotate clustermap w/ annot=False (#2323)
Browse files Browse the repository at this point in the history
Co-authored-by: criddell <[email protected]>
  • Loading branch information
CRiddler and criddell authored Oct 26, 2020
1 parent c9af297 commit b9e1fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seaborn/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ def plot_matrix(self, colorbar_kws, xind, yind, **kws):

# Reorganize the annotations to match the heatmap
annot = kws.pop("annot", None)
if annot is None:
if annot is None or annot is False:
pass
else:
if isinstance(annot, bool):
Expand Down

0 comments on commit b9e1fe9

Please sign in to comment.