-
Notifications
You must be signed in to change notification settings - Fork 3.2k
[Tables] updating docstring #19547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Tables] updating docstring #19547
Conversation
|
Hello @seankane-msft! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
| **kwargs: Any | ||
| ) -> None: | ||
| super(AsyncTablesBaseClient, self).__init__(endpoint, credential=credential, **kwargs) | ||
| super(AsyncTablesBaseClient, self).__init__(endpoint, credential=credential, **kwargs) # type: ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a problem that we are passing an async credential policy into the parent base_client constructor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this gets passed all the way down to AccountHostsMixin which expects a sync token credential.
| self.url, | ||
| table_name=table_name, | ||
| credential=self.credential, | ||
| credential=self.credential, # type: ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we have to suppress the type here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The AccountHostsMixin expects a sync token credential.
No description provided.