Skip to content

Commit 94c44b2

Browse files
committed
fix name of called function of point2index
1 parent cf1b6b5 commit 94c44b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

discretize/tree_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ def face_z_divergence(self): # NOQA D102
926926

927927
def point2index(self, locs): # NOQA D102
928928
# Documentation inherited from discretize.base.BaseMesh
929-
return self.get_containing_cell_indexes(locs)
929+
return self.get_containing_cells(locs)
930930

931931
def cell_levels_by_index(self, indices):
932932
"""Fast function to return a list of levels for the given cell indices.

0 commit comments

Comments
 (0)