Skip to content

Commit 2b34cb9

Browse files
committed
move connect_kwargs description to the place it's expected to be
1 parent 3605c57 commit 2b34cb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

asyncpg/pool.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -860,10 +860,6 @@ def create_pool(dsn=None, *,
860860
the following format:
861861
``postgres://user:pass@host:port/database?option=value``.
862862
863-
:param \*\*connect_kwargs:
864-
Keyword arguments for the :func:`~asyncpg.connection.connect`
865-
function.
866-
867863
:param Connection connection_class:
868864
The class to use for connections. Must be a subclass of
869865
:class:`~asyncpg.connection.Connection`.
@@ -905,6 +901,10 @@ def create_pool(dsn=None, *,
905901
An asyncio event loop instance. If ``None``, the default
906902
event loop will be used.
907903
904+
:param \*\*connect_kwargs:
905+
Keyword arguments for the :func:`~asyncpg.connection.connect`
906+
function.
907+
908908
:return: An instance of :class:`~asyncpg.pool.Pool`.
909909
910910
.. versionchanged:: 0.10.0

0 commit comments

Comments
 (0)