Skip to content

Commit 72c14db

Browse files
committed
Replace references to Pyside2 with qtpy
1 parent da49b61 commit 72c14db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

eqt/ui/UISliderWidget.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from PySide2 import QtCore, QtGui
2-
from PySide2.QtWidgets import QApplication, QGridLayout, QLabel, QLineEdit, QSlider, QWidget
1+
from qtpy import QtCore, QtGui
2+
from qtpy.QtWidgets import QApplication, QGridLayout, QLabel, QLineEdit, QSlider, QWidget
33

44

55
class UISliderWidget(QWidget):

test/test_UISliderWidget.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import unittest
22

33
from parameterized import parameterized
4-
from PySide2 import QtGui
5-
from PySide2.QtWidgets import QGridLayout, QLabel, QLineEdit, QSlider
4+
from qtpy import QtGui
5+
from qtpy.QtWidgets import QGridLayout, QLabel, QLineEdit, QSlider
66

77
from eqt.ui import UISliderWidget
88

0 commit comments

Comments
 (0)