Skip to content

Commit

Permalink
Update test_preprocessing.py
Browse files Browse the repository at this point in the history
fix print statement
  • Loading branch information
dmilkie committed Oct 26, 2023
1 parent 0649bc8 commit d97528e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions tests/test_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,8 @@ def test_remove_background_noise(kargs):

imwrite(f'{base_folder}/FFTfiltered_otf.tif', FFTfiltered_otf)
imwrite(f'{base_folder}/dogfiltered_otf.tif', dogfiltered_otf)
logging.info(
f'3D Frequency supports saved to:'
f'{Path(base_folder / "FFTfiltered_otf.tif").resolve()}'
f'{Path(base_folder / "dogfiltered_otf.tif").resolve()}'
)
logging.info(f'3D Frequency supports saved to: {Path(base_folder / "FFTfiltered_otf.tif").resolve()}')
logging.info(f'3D Frequency supports saved to: {Path(base_folder / "dogfiltered_otf.tif").resolve()}')

# Save principle planes
plt.imsave(f'{base_folder}/FFTfiltered_otf_XY.png', FFTfiltered_otf[center[2], :, :])
Expand Down

0 comments on commit d97528e

Please sign in to comment.