Skip to content

Commit f8cb3dc

Browse files
committed
fix build issues
1 parent a70a18a commit f8cb3dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/communication/azure-communication-phonenumbers/azure/communication/phonenumbers/_phone_numbers_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def list_available_area_codes(
432432
)
433433

434434
@distributed_trace
435-
def search_operator_information( #type: OperatorInformationResult
435+
def search_operator_information(
436436
self,
437437
phone_numbers, # type: PhoneNumberSearchType
438438
options:Optional[OperatorInformationOptions]=None, #type: OperatorInformationOptions
@@ -448,7 +448,7 @@ def search_operator_information( #type: OperatorInformationResult
448448
if not isinstance(phone_numbers, list):
449449
phone_numbers = cast(PhoneNumberSearchType, [ phone_numbers ])
450450
if options is None:
451-
options = OperatorInformationOptions(include_additional_phone_and_operator_details=False)
451+
options = OperatorInformationOptions(include_additional_operator_details=False)
452452
request = OperatorInformationRequest(phone_numbers = phone_numbers, options=options)
453453
return self._phone_number_client.phone_numbers.operator_information_search(
454454
request,

0 commit comments

Comments
 (0)