Skip to content

Commit

Permalink
Fix minor grammatical issues in ext.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
naschmitz authored Dec 19, 2023
1 parent 9fa4422 commit 185e299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xee/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,11 +592,11 @@ def get_variables(self) -> utils.Frozen[str, xarray.Variable]:
)

if isinstance(self.chunks, dict):
# when the value of self.chunks = 'auto' or user-define.
# when the value of self.chunks = 'auto' or user-defined.
width_chunk = self.chunks['width']
height_chunk = self.chunks['height']
else:
# when the value of self.chunks = -1
# when the value of self.chunks = -1.
width_chunk = v0.shape[1]
height_chunk = v0.shape[2]

Expand Down

0 comments on commit 185e299

Please sign in to comment.