We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b065c7f commit 1d7e5abCopy full SHA for 1d7e5ab
qtpy/QtStateMachine.py
@@ -21,25 +21,29 @@
21
QEventTransition,
22
QFinalState,
23
QHistoryState,
24
- QKeyEventTransition,
25
- QMouseEventTransition,
26
QSignalTransition,
27
QState,
28
QStateMachine,
29
)
+ from PyQt5.QtWidgets import (
+ QKeyEventTransition,
30
+ QMouseEventTransition,
31
+ )
32
elif PYSIDE2:
33
from PySide2.QtCore import (
34
QAbstractState,
35
QAbstractTransition,
36
37
38
39
40
41
42
43
+ from PySide2.QtWidgets import (
44
45
46
47
elif PYQT6:
48
from PyQt6.QtStateMachine import *
49
elif PYSIDE6:
0 commit comments