Commit c136e816 authored by Joseph Siddons's avatar Joseph Siddons
Browse files

Merge branch 'remove-len-print' into 'main'

Remove debugging print in OctTree.len()

See merge request !23
parents 0bef0124 6d5a2416
......@@ -464,7 +464,6 @@ class OctTree:
def len(self, _current_len: int = 0) -> int:
"""Get the number of points in the OctTree"""
_current_len += len(self.points)
print(_current_len)
if not self.divided:
return _current_len
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment