Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mogres committed Aug 1, 2023
1 parent 8eeee86 commit d6f9d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cellpack/autopack/MeshStore.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def contains_points_mesh(self, geomname, points):
mesh = self.get_object(geomname)
if mesh is not None:
if len(points) <= CHUNK_SIZE:
return mesh.contains(points) # TODO: check for memory leak
return mesh.contains(points) # TODO: check for memory leak
else:
# chunk the points
for i in range(0, len(points), CHUNK_SIZE):
Expand Down

0 comments on commit d6f9d61

Please sign in to comment.