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 c49826b commit 240e367Copy full SHA for 240e367
xarray/core/indexing.py
@@ -1162,7 +1162,7 @@ def _indexing_array_and_key(self, key):
1162
array = self.array
1163
# We're not interested in obtaining a scalar, but rather a 0d slice.
1164
# This is accomplished by appending an ellipsis (see
1165
- # https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html#detailed-notes).
+ # https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html#detailed-notes). # noqa
1166
key = key.tuple + (Ellipsis,)
1167
else:
1168
raise TypeError('unexpected key type: {}'.format(type(key)))
0 commit comments