From dddd4f51e218d05a18dd4ac7b46d6b83ff2d49ae Mon Sep 17 00:00:00 2001 From: Ales Erjavec Date: Mon, 22 Feb 2016 11:50:26 +0100 Subject: [PATCH] Remove import of PyQt5.Qt unified module Avaid unnecessary import of QtMultimediaWidgets (https://www.riverbankcomputing.com/pipermail/pyqt/2016-February/036875.html) --- pyqtgraph/Qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyqtgraph/Qt.py b/pyqtgraph/Qt.py index eb6ff25e..a28e814a 100644 --- a/pyqtgraph/Qt.py +++ b/pyqtgraph/Qt.py @@ -139,7 +139,7 @@ elif QT_LIB == PYQT5: # We're using PyQt5 which has a different structure so we're going to use a shim to # recreate the Qt4 structure for Qt5 - from PyQt5 import QtGui, QtCore, QtWidgets, Qt, uic + from PyQt5 import QtGui, QtCore, QtWidgets, uic try: from PyQt5 import QtSvg except ImportError: