Skip to content

Commit 240e367

Browse files
committed
pep8
1 parent c49826b commit 240e367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/core/indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ def _indexing_array_and_key(self, key):
11621162
array = self.array
11631163
# We're not interested in obtaining a scalar, but rather a 0d slice.
11641164
# This is accomplished by appending an ellipsis (see
1165-
# https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html#detailed-notes).
1165+
# https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html#detailed-notes). # noqa
11661166
key = key.tuple + (Ellipsis,)
11671167
else:
11681168
raise TypeError('unexpected key type: {}'.format(type(key)))

0 commit comments

Comments
 (0)