Skip to content

Commit 64e6e49

Browse files
committed
correct error in #909
1 parent 5b9c853 commit 64e6e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/figure_factory/_dendrogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def set_axis_layout(self, axis_key):
203203
'showline': True,
204204
}
205205

206-
if self.labels:
206+
if len(self.labels) != 0:
207207
axis_key_labels = self.xaxis
208208
if self.orientation in ['left', 'right']:
209209
axis_key_labels = self.yaxis

0 commit comments

Comments
 (0)