Skip to content

Commit

Permalink
FIX SequencePlotter.plot_table(): labels=False
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed May 6, 2021
1 parent bcfa80a commit 29425ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eelbrain/plot/_brain.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ def set_frame_order(self, order):
self._frame_order = order

def _get_frame_labels(self, labels):
if labels is None:
if labels in (None, False):
return
elif labels is True:
if self._bin_kind == SPLayer.ITEM:
Expand Down

0 comments on commit 29425ea

Please sign in to comment.