Clean up aexit def

This commit is contained in:
Daniel A. Wozniak 2023-07-25 03:00:54 -07:00 committed by Gareth J. Greenaway
parent d273aef431
commit f5d84f3bd1

View file

@ -371,7 +371,7 @@ class AsyncReqChannel:
await self.transport.connect()
return self
async def __aexit__(self, exc_type, exc, tb):
async def __aexit__(self, *_):
self.close()
@ -628,7 +628,7 @@ class AsyncPubChannel:
async def __aenter__(self):
return self
async def __aexit__(self, exc_type, exc, tb):
async def __aexit__(self, *_):
await self.close()