Skip to content
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

fix the failing flake8 CI #4057

Merged
merged 1 commit into from
May 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xarray/backends/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def encode_attribute(self, a):
"""encode one attribute"""
return a

def set_dimension(self, d, l): # pragma: no cover
def set_dimension(self, dim, length): # pragma: no cover
raise NotImplementedError()

def set_attribute(self, k, v): # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion xarray/backends/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ def set_attribute(self, k, v):
# copy to imitate writing to disk.
self._attributes[k] = copy.deepcopy(v)

def set_dimension(self, d, l, unlimited_dims=None):
def set_dimension(self, dim, length, unlimited_dims=None):
# in this model, dimensions are accounted for in the variables
pass