Skip to content

Commit c2bde29

Browse files
committed
remove prints
1 parent ad52ca6 commit c2bde29

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

ulc_mm_package/QtGUI/scope_op.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,6 @@ def run_fastflow(self, img, timestamp):
858858

859859
try:
860860
img_ds = downsample_image(img, DOWNSAMPLE_FACTOR)
861-
print(f"Starting fast flow - sending img of shape {img_ds.shape}")
862861
self.flowrate, syringe_can_move = self.fastflow_routine.send(
863862
(img_ds, timestamp)
864863
)

ulc_mm_package/hardware/scope_routines.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,6 @@ def flow_control_routine(
271271
while True:
272272
img, timestamp = yield flow_val, syringe_can_move
273273

274-
print(f"Flow control received img of shape: {img.shape}")
275274
# Get the flow value, difference from target flow, and whether the syringe can move
276275
# If syringe_can_move is False, a CantReachTargetFlowrate exception was raised, meaning
277276
# the syringe can't move further and the target flowrate has not been reached.

ulc_mm_package/image_processing/flowrate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ def __init__(
5757
self.img_height, self.img_width = img_height, img_width
5858

5959
# for multi-proc
60-
print(f"FRE expects: {img_height}, {img_width}")
6160
self.multiproc_interface = msr.MultiProcFunc.from_arg_definitions(
6261
get_flowrate_with_cross_correlation,
6362
work_fn_inputs=[

0 commit comments

Comments
 (0)