Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft committed Jun 11, 2020
1 parent 41bd496 commit 9c1bf10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class AzureKeyCredentialPolicy(SansIOHTTPPolicy):
:param str name: The name of the key header used for the credential.
:raises: ValueError or TypeError
"""
def __init__(self, credential, name, **kwargs):
def __init__(self, credential, name, **kwargs): # pylint: disable=unused-argument
# type: (AzureKeyCredential, str, Any) -> None
super(AzureKeyCredentialPolicy, self).__init__()
self._credential = credential
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure-core/azure/core/polling/_poller.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
except ImportError:
from urllib.parse import urlparse

from typing import Any, Callable, Union, List, Optional, Tuple, TypeVar, Generic
from typing import Any, Callable, Union, List, Optional, TypeVar, Generic
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.common import with_current_context

Expand Down

0 comments on commit 9c1bf10

Please sign in to comment.