File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -83,9 +83,7 @@ def disposed(self) -> bool:
8383 def dispose (self ) -> None :
8484 if self .handle != INVALID_HANDLE and not self ._disposed :
8585 self ._disposed = True
86- assert FfiClient .instance ._ffi_lib .livekit_ffi_drop_handle (
87- ctypes .c_uint64 (self .handle )
88- )
86+ assert FfiClient .instance ._ffi_lib .livekit_ffi_drop_handle (ctypes .c_uint64 (self .handle ))
8987
9088 def __repr__ (self ) -> str :
9189 return f"FfiHandle({ self .handle } )"
@@ -204,8 +202,7 @@ def __init__(self) -> None:
204202 raise ImportError (
205203 "failed to load %s: %s\n "
206204 "Install the livekit package with: pip install livekit\n "
207- "Or set LIVEKIT_LIB_PATH to the path of the native library."
208- % (libname , e )
205+ "Or set LIVEKIT_LIB_PATH to the path of the native library." % (libname , e )
209206 ) from None
210207 self ._ffi_lib .livekit_ffi_initialize .argtypes = [
211208 ffi_cb_fnc ,
You can’t perform that action at this time.
0 commit comments