Skip to content

Commit b7ef4e5

Browse files
Yalin Lil0lawrence
Yalin Li
authored andcommitted
Fix doc issues (Azure#38204)
1 parent 8bd1c68 commit b7ef4e5

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

sdk/appconfiguration/azure-appconfiguration/azure/appconfiguration/aio/_azure_appconfiguration_client_async.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,18 @@
5252
class AzureAppConfigurationClient:
5353
"""Represents a client that calls restful API of Azure App Configuration service.
5454
55-
:param str base_url: Base url of the service.
56-
:param credential: An object which can provide secrets for the app configuration service
57-
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
58-
:keyword api_version: Api Version. Default value is "2023-11-01". Note that overriding this default
59-
value may result in unsupported behavior.
60-
:paramtype api_version: str
55+
:param str base_url: Base url of the service.
56+
:param credential: An object which can provide secrets for the app configuration service
57+
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
58+
:keyword api_version: Api Version. Default value is "2023-11-01". Note that overriding this default
59+
value may result in unsupported behavior.
60+
:paramtype api_version: str
6161
6262
This is the async version of :class:`~azure.appconfiguration.AzureAppConfigurationClient`
6363
6464
"""
6565

6666
# pylint:disable=protected-access
67-
6867
def __init__(self, base_url: str, credential: AsyncTokenCredential, **kwargs: Any) -> None:
6968
try:
7069
if not base_url.lower().startswith("http"):
@@ -642,7 +641,7 @@ def list_labels(
642641
Available fields see :class:`~azure.appconfiguration.LabelFields`.
643642
:paramtype fields: list[str] or list[~azure.appconfiguration.LabelFields] or None
644643
:return: An async iterator of labels.
645-
:rtype: ~azure.core.paging.AsyncItemPaged[~azure.appconfiguration.ConfigurationSettingLabel]
644+
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.appconfiguration.ConfigurationSettingLabel]
646645
:raises: :class:`~azure.core.exceptions.HttpResponseError`
647646
"""
648647
if isinstance(accept_datetime, datetime):

0 commit comments

Comments
 (0)