|
2 | 2 | Classes for the ticks and x and y axis |
3 | 3 | """ |
4 | 4 | from __future__ import division |
5 | | -import copy |
6 | | -import math |
7 | | -import re |
8 | | -import sys |
9 | 5 |
|
10 | 6 | from artist import Artist, setp |
11 | 7 | from cbook import enumerate, silent_list, popall, CallbackRegistry |
12 | 8 | from lines import Line2D, TICKLEFT, TICKRIGHT, TICKUP, TICKDOWN |
13 | 9 | from matplotlib import rcParams |
14 | 10 | from patches import bbox_artist |
15 | | -from ticker import NullFormatter, FixedFormatter, ScalarFormatter, LogFormatter, LogFormatterMathtext |
16 | | -from ticker import NullLocator, FixedLocator, LinearLocator, LogLocator, AutoLocator |
| 11 | +from ticker import NullFormatter, FixedFormatter, ScalarFormatter |
| 12 | +from ticker import NullLocator, FixedLocator, AutoLocator |
17 | 13 |
|
18 | 14 | from font_manager import FontProperties |
19 | | -from text import Text, TextWithDash, _process_text_args |
20 | | -from transforms import Affine2D, Bbox, blended_transform_factory, interval_contains, \ |
21 | | - interval_contains_open, IdentityTransform |
| 15 | +from text import Text, TextWithDash |
| 16 | +from transforms import Affine2D, Bbox, blended_transform_factory, \ |
| 17 | + interval_contains |
22 | 18 | from patches import bbox_artist |
23 | 19 | from scale import scale_factory |
24 | 20 |
|
|
0 commit comments