Thanks to visit codestin.com Credit goes to github.com
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 41cb3eb commit 894ccd4Copy full SHA for 894ccd4
1 file changed
lib/matplotlib/lines.py
@@ -144,7 +144,7 @@ def _slice_or_none(in_v, slc):
144
elif isinstance(markevery, int):
145
markevery = (0, markevery)
146
# if just an numpy int, assume starting at 0 and make a tuple
147
- elif isinstance(markevery, (int, np.integer)):
+ elif isinstance(markevery, np.integer):
148
markevery = (0, markevery.item())
149
150
if isinstance(markevery, tuple):
0 commit comments