Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
- name: Install the project
run: uv sync --all-extras --dev

# Use the ruff version pinned in uv.lock rather than uvx's latest release,
# so lint results only change when the lockfile is intentionally updated.
- name: Ruff livekit-api
run: uvx ruff check --output-format=github .
run: uv run ruff check --output-format=github .

- name: Check format
run: uvx ruff format --check .
run: uv run ruff format --check .
4 changes: 4 additions & 0 deletions livekit-rtc/livekit/rtc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
from .room import (
ConnectError,
DataPacket,
DataStreamOptions,
Room,
RoomOptions,
RtcConfiguration,
Expand Down Expand Up @@ -123,6 +124,7 @@
TextStreamWriter,
ByteStreamWriter,
ByteStreamReader,
StreamError,
)
from .data_track import (
LocalDataTrack,
Expand Down Expand Up @@ -172,6 +174,7 @@
"ConnectError",
"Room",
"RoomOptions",
"DataStreamOptions",
"RtcConfiguration",
"SimulateScenarioKind",
"SipDTMF",
Expand Down Expand Up @@ -217,6 +220,7 @@
"TextStreamWriter",
"ByteStreamReader",
"ByteStreamWriter",
"StreamError",
"AudioProcessingModule",
"PlatformAudio",
"PlatformAudioSource",
Expand Down
226 changes: 121 additions & 105 deletions livekit-rtc/livekit/rtc/_proto/data_stream_pb2.py

Large diffs are not rendered by default.

122 changes: 114 additions & 8 deletions livekit-rtc/livekit/rtc/_proto/data_stream_pb2.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading