diff --git a/xarray/backends/common.py b/xarray/backends/common.py index cc680ecfc2b..e574f19e9d4 100644 --- a/xarray/backends/common.py +++ b/xarray/backends/common.py @@ -401,7 +401,10 @@ def encode_attribute(self, a): """encode one attribute""" return a - def set_dimension(self, dim, length): # pragma: no cover + def prepare_variable(self, name, variable, check_encoding, unlimited_dims): + raise NotImplementedError() + + def set_dimension(self, dim, length, is_unlimited): # pragma: no cover raise NotImplementedError() def set_attribute(self, k, v): # pragma: no cover