Skip to content

Add missing AbstractWritableDataStore base methods and arguments #10343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 30, 2025
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