aboutsummaryrefslogtreecommitdiffstats
path: root/examples/async/minimal/minimal_trio.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/async/minimal/minimal_trio.py')
-rw-r--r--examples/async/minimal/minimal_trio.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/async/minimal/minimal_trio.py b/examples/async/minimal/minimal_trio.py
index 526bdd331..5ae19fa36 100644
--- a/examples/async/minimal/minimal_trio.py
+++ b/examples/async/minimal/minimal_trio.py
@@ -46,7 +46,7 @@ class AsyncHelper(QObject):
Trio to resume when the event is handled. event.fn() is the
next entry point of the Trio event loop. """
def event(self, event):
- if event.type() == QEvent.User + 1:
+ if event.type() == QEvent.Type.User + 1:
event.fn()
return True
return False
@@ -55,7 +55,7 @@ class AsyncHelper(QObject):
""" This is the QEvent that will be handled by the ReenterQtObject.
self.fn is the next entry point of the Trio event loop. """
def __init__(self, fn):
- super().__init__(QEvent.Type(QEvent.User + 1))
+ super().__init__(QEvent.Type(QEvent.Type.User + 1))
self.fn = fn
def __init__(self, worker, entry):