Skip to content

Commit 94b09f6

Browse files
committed
clean
1 parent aad0b75 commit 94b09f6

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

livekit-api/livekit/api/livekit_api.py

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -59,37 +59,27 @@ def __init__(
5959

6060
@property
6161
def agent_dispatch(self) -> AgentDispatchService:
62-
"""Instance of the AgentDispatchService
63-
64-
See `livekit.api.agent_dispatch_service.AgentDispatchService`"""
62+
"""Instance of the AgentDispatchService"""
6563
return self._agent_dispatch
6664

6765
@property
6866
def room(self) -> RoomService:
69-
"""Instance of the RoomService
70-
71-
See `livekit.api.room_service.RoomService`"""
67+
"""Instance of the RoomService"""
7268
return self._room
7369

7470
@property
7571
def ingress(self) -> IngressService:
76-
"""Instance of the IngressService
77-
78-
See `livekit.api.ingress_service.IngressService`"""
72+
"""Instance of the IngressService"""
7973
return self._ingress
8074

8175
@property
8276
def egress(self) -> EgressService:
83-
"""Instance of the EgressService
84-
85-
See `livekit.api.egress_service.EgressService`"""
77+
"""Instance of the EgressService"""
8678
return self._egress
8779

8880
@property
8981
def sip(self) -> SipService:
90-
"""Instance of the SipService
91-
92-
See `livekit.api.sip_service.SipService`"""
82+
"""Instance of the SipService"""
9383
return self._sip
9484

9585
async def aclose(self):

0 commit comments

Comments
 (0)