You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cleanup ScalarFormatter; preparatory to moving it to format_ticks.
ScalarFormatter.set_locs calls a bunch of helper methods with arguments
that the helpers can reconstruct themselves based on
axis.get_view_interval(); in fact they *already* call
axis.get_view_interval() at certain places. So get rid of these
arguments.
ScalarFormatter._compute_offset is only ever called by set_locs, and
only if len(locs) > 0, so the `locs is None or not len(locs)` condition
is never True.
0 commit comments