Skip to content

Commit

Permalink
fix the failing flake8 CI (#4057)
Browse files Browse the repository at this point in the history
* rename d and l to dim and length
  • Loading branch information
keewis authored May 13, 2020
1 parent c73e958 commit 8051c47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 8051c47

Please sign in to comment.