summaryrefslogtreecommitdiff
path: root/src/apscheduler/eventbrokers/async_adapter.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/apscheduler/eventbrokers/async_adapter.py')
-rw-r--r--src/apscheduler/eventbrokers/async_adapter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apscheduler/eventbrokers/async_adapter.py b/src/apscheduler/eventbrokers/async_adapter.py
index a91aae3..3f1e13f 100644
--- a/src/apscheduler/eventbrokers/async_adapter.py
+++ b/src/apscheduler/eventbrokers/async_adapter.py
@@ -2,7 +2,7 @@ from __future__ import annotations
from functools import partial
-import attr
+import attrs
from anyio import to_thread
from anyio.from_thread import BlockingPortal
@@ -13,7 +13,7 @@ from apscheduler.util import reentrant
@reentrant
-@attr.define(eq=False)
+@attrs.define(eq=False)
class AsyncEventBrokerAdapter(LocalAsyncEventBroker):
original: EventBroker
portal: BlockingPortal