Fix PyQt4 import

This commit is contained in:
Kefkius 2015-11-24 14:33:35 -05:00
parent c2c70c5c6c
commit a24861ba3f
No known key found for this signature in database
GPG Key ID: 04A8B78325A3AF49

View File

@ -1,8 +1,8 @@
import sys
import math
import operator
from PyQt4.Qt import QApplication, QWidget, QGridLayout, QVBoxLayout, QHBoxLayout
from PyQt4.QtGui import QPushButton, QLineEdit, QSizePolicy, QRegExpValidator, QLabel
from PyQt4.QtGui import (QPushButton, QLineEdit, QSizePolicy, QRegExpValidator, QLabel,
QApplication, QWidget, QGridLayout, QVBoxLayout, QHBoxLayout)
from PyQt4.QtCore import QObject, SIGNAL, QRegExp, Qt
class PinButton(QPushButton):