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 6365ae5 commit 0f36be1Copy full SHA for 0f36be1
lib/matplotlib/cbook/__init__.py
@@ -1335,8 +1335,9 @@ def _check_1d(x):
1335
if ndim < 2:
1336
return np.atleast_1d(x)
1337
return x
1338
- # In pandas 1.1.0, multidimensional indexing leads to an AssertionError for some
1339
- # Series objects, but should be IndexError as described in
+ # In pandas 1.1.0, multidimensional indexing leads to an
+ # AssertionError for some Series objects, but should be
1340
+ # IndexError as described in
1341
# https://github.com/pandas-dev/pandas/issues/35527
1342
except (AssertionError, IndexError, TypeError):
1343
0 commit comments