From 6d5a2416416a5b94d5061d5f34ca8814f59ca763 Mon Sep 17 00:00:00 2001 From: josidd <joseph.siddons@noc.ac.uk> Date: Thu, 27 Feb 2025 13:43:24 +0000 Subject: [PATCH] fix: remove debugging print --- GeoSpatialTools/octtree.py | 1 - 1 file changed, 1 deletion(-) diff --git a/GeoSpatialTools/octtree.py b/GeoSpatialTools/octtree.py index 250f145..ea48d4d 100644 --- a/GeoSpatialTools/octtree.py +++ b/GeoSpatialTools/octtree.py @@ -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 -- GitLab