Skip to content

Commit

Permalink
fix: critical fix that amends __exit__ and __aexit__ (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMochan authored Nov 10, 2023
1 parent 5820110 commit b60e3a9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion subgrounds/client/async_.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,4 +231,3 @@ async def __aenter__(self):

async def __aexit__(self, *args):
await self._client.__aexit__(*args)
return self
1 change: 0 additions & 1 deletion subgrounds/client/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,4 +449,3 @@ def __enter__(self):

def __exit__(self, *args):
self._client.__exit__(*args)
return self

0 comments on commit b60e3a9

Please sign in to comment.