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 f45cfe6 commit f01096fCopy full SHA for f01096f
xarray/core/datatree.py
@@ -154,12 +154,6 @@ def check_alignment(
154
def _deduplicate_inherited_coordinates(child: DataTree, parent: DataTree) -> None:
155
# This method removes repeated indexes (and corresponding coordinates)
156
# that are repeated between a DataTree and its parents.
157
- #
158
- # TODO(shoyer): Decide how to handle repeated coordinates *without* an
159
- # index. Should these be allowed, in which case we probably want to
160
- # exclude them from inheritance, or should they be automatically
161
- # dropped?
162
- # https://github.com/pydata/xarray/issues/9475#issuecomment-2357004264
163
removed_something = False
164
for name in parent._indexes:
165
if name in child._node_indexes:
0 commit comments