mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 20:40:21 +08:00
6f57873526
Conflicts: skimage/viewer/tests/test_tools.py
7 lines
146 B
Python
7 lines
146 B
Python
import warnings
|
|
from .viewers import ImageViewer, CollectionViewer
|
|
from .qt import has_qt
|
|
|
|
if not has_qt:
|
|
warnings.warn('Viewer requires Qt')
|