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 e7ab84d commit 95384acCopy full SHA for 95384ac
xarray/core/datatree.py
@@ -468,14 +468,9 @@ def __init__(
468
# shallow copy to avoid modifying arguments in-place (see GH issue #9196)
469
self.children = {name: child.copy() for name, child in children.items()}
470
471
-<<<<<<< eschalk/make-illegal-path-like-variable-names-when-dt-from-ds
472
- def _set_node_data(self, ds: Dataset):
473
- _check_for_slashes_in_names(ds.variables)
474
- data_vars, coord_vars = _collect_data_and_coord_variables(ds)
475
-=======
476
def _set_node_data(self, dataset: Dataset):
+ _check_for_slashes_in_names(ds.variables)
477
data_vars, coord_vars = _collect_data_and_coord_variables(dataset)
478
->>>>>>> main
479
self._data_variables = data_vars
480
self._node_coord_variables = coord_vars
481
self._node_dims = dataset._dims
0 commit comments