(self, key: Hashable, value: Any)
| 613 | return self.merge(other).coords |
| 614 | |
| 615 | def __setitem__(self, key: Hashable, value: Any) -> None: |
| 616 | self.update({key: value}) |
| 617 | |
| 618 | def update(self, other: Mapping[Any, Any]) -> None: |
| 619 | """Update this Coordinates variables with other coordinate variables.""" |