Skip to content

Commit 4acbb07

Browse files
committed
format
1 parent 32a784f commit 4acbb07

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

livekit-rtc/livekit/rtc/audio_filter.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66

77
class AudioFilter:
8-
def __init__(self, module_id: str, path: str, dependencies: Optional[List[str]] = None) -> None:
8+
def __init__(
9+
self, module_id: str, path: str, dependencies: Optional[List[str]] = None
10+
) -> None:
911
self._path = path
1012

1113
req = proto_ffi.FfiRequest()
@@ -18,7 +20,9 @@ def __init__(self, module_id: str, path: str, dependencies: Optional[List[str]]
1820
resp = FfiClient.instance.request(req)
1921

2022
if resp.load_audio_filter_plugin.error:
21-
raise Exception(f"failed to initialize audio filter #{resp.load_audio_filter_plugin.error}")
23+
raise Exception(
24+
f"failed to initialize audio filter #{resp.load_audio_filter_plugin.error}"
25+
)
2226

2327
def handle(self) -> int:
2428
return self._ffi_handle_id

0 commit comments

Comments
 (0)