8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f04b6c9 commit ee2e1c9Copy full SHA for ee2e1c9
lib/matplotlib/axes/_axes.py
@@ -14,7 +14,8 @@
14
from matplotlib import unpack_labeled_data
15
16
import matplotlib.cbook as cbook
17
-from matplotlib.cbook import mplDeprecation, STEP_LOOKUP_MAP
+from matplotlib.cbook import (mplDeprecation, STEP_LOOKUP_MAP, is_sequence_of_strings,
18
+ iterable, is_string_like)
19
import matplotlib.collections as mcoll
20
import matplotlib.colors as mcolors
21
import matplotlib.contour as mcontour
@@ -43,10 +44,6 @@
43
44
45
rcParams = matplotlib.rcParams
46
-iterable = cbook.iterable
47
-is_string_like = cbook.is_string_like
48
-is_sequence_of_strings = cbook.is_sequence_of_strings
49
-
50
51
def _plot_args_replacer(args, data):
52
if len(args) == 1:
0 commit comments