Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Feb 10, 2025
1 parent 6093b0e commit 34508e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tiledb/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def index_domain_subarray(array, dom, idx: tuple):

subarray = list()

# In case that current domain is not empty, we need to consider it
# In the case that current domain is non-empty, we need to consider it
if (
hasattr(array.schema, "current_domain")
and not array.schema.current_domain.is_empty
Expand Down
2 changes: 1 addition & 1 deletion tiledb/multirange_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def label_ranges_from_selection(selection):
def getitem_ranges(array: Array, idx: Any) -> Sequence[Sequence[Range]]:
ranges: List[Sequence[Range]] = [()] * array.schema.domain.ndim

# In case that current domain is not empty, we need to consider it
# In the case that current domain is non-empty, we need to consider it
if (
hasattr(array.schema, "current_domain")
and not array.schema.current_domain.is_empty
Expand Down

0 comments on commit 34508e4

Please sign in to comment.