monashmicroimaging / podocytes

GNU General Public License v3.0
2 stars 3 forks source link

Eliminate warning "No module named 'tifffile._tifffile'" #10

Closed GenevieveBuckley closed 6 years ago

GenevieveBuckley commented 6 years ago

This warning is not applicable to our app, since we are not reading input tiff files. Perhaps we can eliminate or suppress the warning, so users don't become worried.

/var/folders/gz/6f0v_zhs09x38mb4td_h6py80000gn/T/_MEI4ShOmh/tifffile/tifffile.py:7685: UserWarning: No module named 'tifffile._tifffile'
  Functionality might be degraded or be slow.
GenevieveBuckley commented 6 years ago

Fix: add thls line with the rest of the import statements in main.py import tifffile._tifffile # imported to silence pims warning

Closed with commit ddf91a0.