Skip to content

Commit 0f36be1

Browse files
committed
Fix flake8 line length complaint
1 parent 6365ae5 commit 0f36be1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/cbook/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,8 +1335,9 @@ def _check_1d(x):
13351335
if ndim < 2:
13361336
return np.atleast_1d(x)
13371337
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
1338+
# In pandas 1.1.0, multidimensional indexing leads to an
1339+
# AssertionError for some Series objects, but should be
1340+
# IndexError as described in
13401341
# https://github.com/pandas-dev/pandas/issues/35527
13411342
except (AssertionError, IndexError, TypeError):
13421343
return np.atleast_1d(x)

0 commit comments

Comments
 (0)