Skip to content

Commit

Permalink
remove print notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypinkard committed Sep 7, 2023
1 parent e98d25c commit 1a7a12a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pycromanager/test/test_acquisition.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ def test_multi_d_acq(launch_mm_headless, setup_data_folder):
order="tcz",
)

with Acquisition(setup_data_folder, 'acq', show_display=False,
notification_callback_fn=lambda n : print(n.to_json())) as acq:
with Acquisition(setup_data_folder, 'acq', show_display=False) as acq:
acq.acquire(events)

dataset = acq.get_dataset()
Expand Down Expand Up @@ -545,8 +544,7 @@ def test_change_roi(launch_mm_headless, setup_data_folder):
mmc = Core()
mmc.set_roi(*(0, 0, 100, 100))

with Acquisition(setup_data_folder, 'acq', show_display=False,
notification_callback_fn=lambda n : print(n.to_json())) as acq:
with Acquisition(setup_data_folder, 'acq', show_display=False) as acq:
events = multi_d_acquisition_events(num_time_points=5)
acq.acquire(events)

Expand Down

0 comments on commit 1a7a12a

Please sign in to comment.