Skip to content

Commit cb34f1f

Browse files
committed
ruff upgrade
1 parent 3a1163e commit cb34f1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

livekit-rtc/livekit/rtc/synchronizer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ async def wait_next_process(self) -> None:
185185

186186
def after_process(self) -> None:
187187
"""Update timing information after processing a frame."""
188-
assert (
189-
self._next_frame_time is not None
190-
), "wait_next_process must be called first"
188+
assert self._next_frame_time is not None, (
189+
"wait_next_process must be called first"
190+
)
191191

192192
# update timing information
193193
self._send_timestamps.append(time.perf_counter())

0 commit comments

Comments
 (0)