Skip to content

Commit 65cf291

Browse files
committed
fmt
1 parent d861c2f commit 65cf291

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

livekit-api/livekit/api/livekit_api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,18 @@ def sip(self) -> SipService:
8484

8585
async def aclose(self):
8686
"""Close the API client
87-
87+
8888
Call this before your application exits or when the API client is no longer needed."""
8989
await self._session.close()
90-
90+
9191
async def __aenter__(self):
9292
"""@private
93-
93+
9494
Support for `async with`"""
9595
return self
9696

9797
async def __aexit__(self, exc_type, exc_val, exc_tb):
9898
"""@private
99-
99+
100100
Support for `async with`"""
101101
await self.aclose()

0 commit comments

Comments
 (0)