6 lines
154 B
Python
6 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')
|