-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix DataTree.coords.__setitem__
by adding DataTreeCoordinates
class
#9451
Changes from 1 commit
704db79
417e3e9
9562e92
0e7de82
839858f
9370b9b
9b50567
c466f8d
0397eca
85bb221
7802c63
1bf5082
e8620cf
1108504
0a7201b
51e11bc
7ecdd16
dfcdb6d
3278153
f672c5e
7fb1622
897b7c4
b5a56f4
fdae5bc
9dc845a
6595fe9
ed87554
c155bc1
217cb84
540bb0f
7126efa
8486227
12f24df
8f09c93
d23105f
978e05e
bd47575
8ef94df
10b8a78
b9ede22
540a825
b30d5e0
639ad07
0a9a328
80bc0bd
a366bf6
4d352bd
4626fa8
ea8a195
af94af4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Unchanged files with check annotations Beta
dt["child"] = DataTree() | ||
actual = dt.copy(deep=True) | ||
actual.coords["x"] = ("x", ["a", "b"]) | ||
Check failure on line 611 in xarray/tests/test_datatree.py
|
||
assert_array_equal(actual["x"], ["a", "b"]) | ||
actual = dt.copy(deep=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is OK for this to be an error. The user can replace those coordinates on the parent nodes.