1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-21 12:02:19 +00:00

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 sys
import math import math
import operator 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 from PyQt4.QtCore import QObject, SIGNAL, QRegExp, Qt
class PinButton(QPushButton): class PinButton(QPushButton):