Skip to content

Commit

Permalink
[Tables] Address docstring (Azure#32047)
Browse files Browse the repository at this point in the history
  • Loading branch information
YalinLi0312 authored Sep 14, 2023
1 parent 57cdeaa commit d5ed657
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sdk/tables/azure-data-tables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.4.4 (2023-09-12)
## 12.4.4 (2023-09-14)

### Features Added
* Enabled to specify resource type `container` in account SAS access.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def __init__( # pylint: disable=missing-client-constructor-parameter-credential
~azure.core.credentials.TokenCredential or None
:keyword api_version: Specifies the version of the operation to use for this request. Default value
is "2019-02-02".
:paramtype api_version: str
:paramtype api_version: str or None
"""
super(TablesBaseClient, self).__init__(endpoint, credential=credential, **kwargs) # type: ignore
self._client = AzureTable(self.url, policies=kwargs.pop("policies", self._policies), **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion sdk/tables/azure-data-tables/azure/data/tables/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ class TableItem:
Represents an Azure TableItem.
Returned by TableServiceClient.list_tables and TableServiceClient.query_tables.
:param str name: The name of the table.
:ivar str name: The name of the table.
"""

def __init__(self, name: str) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__( # pylint: disable=missing-client-constructor-parameter-credential
~azure.core.credentials_async.AsyncTokenCredential or None
:keyword api_version: Specifies the version of the operation to use for this request. Default value
is "2019-02-02".
:paramtype api_version: str
:paramtype api_version: str or None
"""
super(AsyncTablesBaseClient, self).__init__(endpoint, credential=credential, **kwargs) # type: ignore
self._client = AzureTable(self.url, policies=kwargs.pop("policies", self._policies), **kwargs)
Expand Down

0 comments on commit d5ed657

Please sign in to comment.