Skip to content

Commit

Permalink
Merge pull request google#93 from google/test_579655336
Browse files Browse the repository at this point in the history
No public description
  • Loading branch information
naschmitz authored Nov 6, 2023
2 parents efc0b98 + 43b924e commit c97c6f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xee/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,10 @@ def __init__(
self.chunks = self._assign_index_chunks(chunks)

self.preferred_chunks = self._assign_preferred_chunks()
self.mask_value = mask_value or self.DEFAULT_MASK_VALUE
if mask_value is None:
self.mask_value = self.DEFAULT_MASK_VALUE
else:
self.mask_value = mask_value

@functools.cached_property
def get_info(self) -> dict[str, Any]:
Expand Down

0 comments on commit c97c6f2

Please sign in to comment.