(self)
| 955 | self.variable.encoding = dict(value) |
| 956 | |
| 957 | def reset_encoding(self) -> Self: |
| 958 | warnings.warn( |
| 959 | "reset_encoding is deprecated since 2023.11, use `drop_encoding` instead", |
| 960 | stacklevel=2, |
| 961 | ) |
| 962 | return self.drop_encoding() |
| 963 | |
| 964 | def drop_encoding(self) -> Self: |
| 965 | """Return a new DataArray without encoding on the array or any attached |
nothing calls this directly
no test coverage detected