mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 22:23:29 +08:00
7 lines
154 B
Python
7 lines
154 B
Python
from .._shared.utils import warn
|
|
from .viewers import ImageViewer, CollectionViewer
|
|
from .qt import has_qt
|
|
|
|
if not has_qt:
|
|
warn('Viewer requires Qt')
|