Skip to content
5 changes: 4 additions & 1 deletion xarray/backends/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading