diff --git a/src/psql/psql.py b/src/psql/psql.py index b511572..fe02e76 100644 --- a/src/psql/psql.py +++ b/src/psql/psql.py @@ -164,9 +164,11 @@ class PsqlDB: self._pool = None async def __aenter__(self) -> "PsqlDB": + """enter: connect() and return self""" return await self.connect() async def __aexit__(self, exc_type, exc, tb) -> None: + """exit: close(), ignoring exc_type/exc/tb""" await self.close() @property