Skip to content

Commit 384bcc4

Browse files
author
Vinothini Dharmaraj
committed
fixing sphinx error
1 parent 52f2424 commit 384bcc4

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/_call_connection_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from typing import TYPE_CHECKING, Optional, List, Union, Dict, overload
88
from urllib.parse import urlparse
99
import warnings
10-
1110
from typing_extensions import Literal
1211

1312
from azure.core.paging import ItemPaged
@@ -904,6 +903,7 @@ def cancel_add_participant_operation(
904903
**kwargs
905904
) -> CancelAddParticipantOperationResult:
906905
"""Cancel add participant request sent out to a participant.
906+
907907
:param invitation_id: The invitation ID that was used to add the participant.
908908
:type invitation_id: str
909909
:keyword operation_context: Value that can be used to track this call and its associated events.
@@ -917,6 +917,7 @@ def cancel_add_participant_operation(
917917
:rtype: ~azure.communication.callautomation.CancelAddParticipantOperationResult
918918
:raises ~azure.core.exceptions.HttpResponseError:
919919
"""
920+
920921
cancel_add_participant_request = CancelAddParticipantRequest(
921922
invitation_id=invitation_id,
922923
operation_context=operation_context,

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/_models.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -551,18 +551,6 @@ def __init__(
551551
state: Optional[Union[str, "TranscriptionSubscriptionState"]] = None,
552552
subscribed_result_states: Optional[List[Union[str, "TranscriptionResultState"]]] = None
553553
) -> None:
554-
"""
555-
:keyword id: Subscription Id.
556-
:paramtype id: str
557-
:keyword state: Transcription subscription state. Known values are: "disabled", "inactive", and
558-
"active".
559-
:paramtype state: str or
560-
~azure.communication.callautomation.models.TranscriptionSubscriptionState
561-
:keyword subscribed_result_states: Subscribed transcription result types.
562-
:paramtype subscribed_result_states: list[str or
563-
~azure.communication.callautomation.models.TranscriptionResultState]
564-
"""
565-
566554
self.id = id
567555
self.state = state
568556
self.subscribed_result_states = subscribed_result_states

0 commit comments

Comments
 (0)