File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Original file line number Diff line number Diff line change 2
2
unicode_literals )
3
3
4
4
import six
5
- from collections import OrderedDict , namedtuple
6
5
6
+ from collections import OrderedDict , namedtuple
7
+ from contextlib import contextmanager
8
+ from functools import wraps
9
+ import inspect
7
10
import re
8
11
import warnings
9
- import inspect
12
+
10
13
import numpy as np
14
+
11
15
import matplotlib
12
- import matplotlib .cbook as cbook
13
- from matplotlib import docstring , rcParams
14
- from .transforms import (Bbox , IdentityTransform , TransformedBbox ,
15
- TransformedPatchPath , TransformedPath , Transform )
16
+ from . import cbook , docstring , rcParams
16
17
from .path import Path
17
- from functools import wraps
18
- from contextlib import contextmanager
18
+ from . transforms import ( Bbox , IdentityTransform , Transform , TransformedBbox ,
19
+ TransformedPatchPath , TransformedPath )
19
20
# Note, matplotlib artists use the doc strings for set and get
20
21
# methods to enable the introspection methods of setp and getp. Every
21
22
# set_* method should have a docstring containing the line
You can’t perform that action at this time.
0 commit comments