summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-08-17 02:17:34 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-08-17 02:17:34 +0300
commite97dc2ada1114f8cfcb26e4df592e170417a5c79 (patch)
tree3fa4015ad7972d776ba3ec0f28b10258e81b0aaf /src
parent6adb2849ad2ab8ca69955231ee72bcd9fc7b5129 (diff)
downloadapscheduler-e97dc2ada1114f8cfcb26e4df592e170417a5c79.tar.gz
Added explicit type for unresolvable parameter
Diffstat (limited to 'src')
-rw-r--r--src/apscheduler/eventbrokers/asyncpg.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apscheduler/eventbrokers/asyncpg.py b/src/apscheduler/eventbrokers/asyncpg.py
index b98488d..5666392 100644
--- a/src/apscheduler/eventbrokers/asyncpg.py
+++ b/src/apscheduler/eventbrokers/asyncpg.py
@@ -61,6 +61,7 @@ class AsyncpgEventBroker(LocalAsyncEventBroker, DistributedEventBrokerMixin):
Create a new asyncpg event broker from an SQLAlchemy engine.
:param engine: an asynchronous SQLAlchemy engine using asyncpg as the driver
+ :type engine: ~sqlalchemy.ext.asyncio.AsyncEngine
:param kwargs: keyword arguments to pass to the initializer of this class
:return: the newly created event broker