We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19812eb commit 0c0034aCopy full SHA for 0c0034a
livekit-rtc/livekit/rtc/synchronizer.py
@@ -185,9 +185,9 @@ async def wait_next_process(self) -> None:
185
186
def after_process(self) -> None:
187
"""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"
+ assert self._next_frame_time is not None, (
+ "wait_next_process must be called first"
+ )
191
192
# update timing information
193
self._send_timestamps.append(time.perf_counter())
0 commit comments