mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-03 13:11:25 +08:00
Conflicts: skimage/viewer/tests/test_plugins.py skimage/viewer/tests/test_tools.py
9 lines
218 B
Python
9 lines
218 B
Python
try:
|
|
from matplotlib.backends.qt_compat import QtGui, QtCore, QtWidgets
|
|
except ImportError:
|
|
from matplotlib.backends.qt4_compat import QtGui, QtCore
|
|
QtWidgets = QtGui
|
|
|
|
Qt = QtCore.Qt
|
|
Signal = QtCore.Signal
|