From 185e29910b057cbd7dbcdba55a8c3b65417cff51 Mon Sep 17 00:00:00 2001 From: Nathaniel Schmitz Date: Tue, 19 Dec 2023 10:37:13 -0500 Subject: [PATCH] Fix minor grammatical issues in ext.py. --- xee/ext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xee/ext.py b/xee/ext.py index a51c7e4..e805770 100644 --- a/xee/ext.py +++ b/xee/ext.py @@ -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]