Skip to content

Commit b34c254

Browse files
style(pre-commit): auto fixes from pre-commit.com hooks
1 parent 6c124bf commit b34c254

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

discord/voice/state.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,9 @@ def ws_hook(self, ws: VoiceWebSocket, msg: dict[str, Any]) -> None:
547547
"speaking": speaking,
548548
}
549549

550-
def dispatch_speaking_state(self, before: SpeakingState, after: SpeakingState, user_id: int) -> None:
550+
def dispatch_speaking_state(
551+
self, before: SpeakingState, after: SpeakingState, user_id: int
552+
) -> None:
551553
task = self.loop.create_task(
552554
self._dispatch_speaking_state(before, after, user_id),
553555
)
@@ -567,7 +569,9 @@ async def _dispatch_speaking_state(
567569

568570
futures = [
569571
self.loop.create_task(
570-
utils.maybe_coroutine(fil.filter_speaking_state, sink, resolved, before, after)
572+
utils.maybe_coroutine(
573+
fil.filter_speaking_state, sink, resolved, before, after
574+
)
571575
)
572576
for fil in sink._filters
573577
]

0 commit comments

Comments
 (0)