From 152bb167fb174ca859a3bcb7ff351f7f79dcff2c Mon Sep 17 00:00:00 2001 From: iyad-f <128908811+iyad-f@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:26:38 +0530 Subject: [PATCH] docs: get_connection doesnt accept any args --- litestar_asyncpg/config.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/litestar_asyncpg/config.py b/litestar_asyncpg/config.py index eab631a..4585d1c 100644 --- a/litestar_asyncpg/config.py +++ b/litestar_asyncpg/config.py @@ -288,9 +288,6 @@ async def provide_connection(self, state: "State", scope: "Scope") -> "AsyncGene async def get_connection(self) -> "AsyncGenerator[AsyncpgConnection, None]": """Create a connection instance. - Args: - pool: The pool to grab a connection from - Returns: A connection instance. """