Skip to content

Commit

Permalink
[python] One more rename in prep for domainish pushdown (#3026)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Sep 21, 2024
1 parent fa1fcc6 commit 11d5396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apis/python/src/tiledbsoma/_tdb_handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def maxdomain(self) -> Tuple[Tuple[object, object], ...]:
return self._get_and_cast_domain(self._handle.soma_maxdomain_slot)

def non_empty_domain(self) -> Tuple[Tuple[object, object], ...]:
return self._get_and_cast_domain(self._handle.non_empty_domain) or ()
return self._get_and_cast_domain(self._handle.non_empty_domain_slot) or ()

@property
def attr_names(self) -> Tuple[str, ...]:
Expand Down
2 changes: 1 addition & 1 deletion apis/python/src/tiledbsoma/soma_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ void load_soma_array(py::module& m) {
})

.def(
"non_empty_domain",
"non_empty_domain_slot",
[](SOMAArray& array, std::string name, py::dtype dtype) {
switch (np_to_tdb_dtype(dtype)) {
case TILEDB_UINT64:
Expand Down

0 comments on commit 11d5396

Please # to comment.