1
0

Remove usages of deprecated apply() builtin

This commit is contained in:
suut
2017-08-01 05:22:18 +02:00
parent b95b21b2f2
commit bc4fcfbebd
7 changed files with 11 additions and 11 deletions

View File

@@ -69,7 +69,7 @@ class EnterButton(QPushButton):
def keyPressEvent(self, e):
if e.key() == Qt.Key_Return:
apply(self.func,())
self.func()
class ThreadedButton(QPushButton):