]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
"black" files which have to be reformatted
authorsemen603089 <semen603089@mail.ru>
Sat, 15 Jul 2023 03:13:09 +0000 (06:13 +0300)
committersemen603089 <semen603089@mail.ru>
Sat, 15 Jul 2023 03:13:09 +0000 (06:13 +0300)
lib/sqlalchemy/ext/asyncio/engine.py
lib/sqlalchemy/ext/asyncio/session.py

index 916e13dcad5884a05a5c6a8132e535c96ac00fd8..08e10c6332c3a7b32774453d336e8c9e99c8de7f 100644 (file)
@@ -477,8 +477,7 @@ class AsyncConnection(
         await greenlet_spawn(self._proxied.close)
 
     async def aclose(self) -> None:
-        """Call the close() method of :class:`_asyncio.AsyncConnection`
-        """
+        """Call the close() method of :class:`_asyncio.AsyncConnection`"""
         await self.close()
 
     async def exec_driver_sql(
index 25137dce73e3f9b9bb969153574c07e9588f0b31..26d0fe644529488f3c7f544fc9d50909f43e6118 100644 (file)
@@ -974,8 +974,7 @@ class AsyncSession(ReversibleProxy[Session]):
         await greenlet_spawn(self.sync_session.close)
 
     async def aclose(self) -> None:
-        """Call the close() method of :class:`_asyncio.AsyncSession`
-        """
+        """Call the close() method of :class:`_asyncio.AsyncSession`"""
         await self.close()
 
     async def invalidate(self) -> None: