(self, variables, attributes)
| 716 | __slots__ = () |
| 717 | |
| 718 | def encode(self, variables, attributes): |
| 719 | # All NetCDF files get CF encoded by default, without this attempting |
| 720 | # to write times, for example, would fail. |
| 721 | variables, attributes = cf_encoder(variables, attributes) |
| 722 | variables = { |
| 723 | k: ensure_dtype_not_object(v, name=k) for k, v in variables.items() |
| 724 | } |
| 725 | return super().encode(variables, attributes) |
| 726 | |
| 727 | |
| 728 | class BackendEntrypoint: |
nothing calls this directly
no test coverage detected