Skip to content

Commit 3065ebd

Browse files
Remove debug print statements from Slicer.py (#2291)
Removed debug print statements for geometry and shape. Signed-off-by: Laura Murgatroyd <60604372+lauramurgatroyd@users.noreply.github.com>
1 parent f8f2e31 commit 3065ebd

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

Wrappers/Python/cil/processors/Slicer.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,6 @@ def process(self, out=None):
414414
else:
415415
new_geometry = None
416416

417-
print("New geometry: ", new_geometry)
418-
print("Shape out: ", self._shape_out)
419-
420417
# return if just acting on geometry
421418
if not self._data_array:
422419
return new_geometry
@@ -425,7 +422,6 @@ def process(self, out=None):
425422
if out is None:
426423
if new_geometry is not None:
427424
data_out = new_geometry.allocate(None)
428-
print("New geometry shape: ", data_out.shape)
429425
else:
430426
processed_array = np.empty(self._shape_out,dtype=np.float32)
431427
data_out = DataContainer(processed_array,False, self._labels_out)

0 commit comments

Comments
 (0)