Skip to content

Commit

Permalink
[Tables] fixing pylint (Azure#18816)
Browse files Browse the repository at this point in the history
  • Loading branch information
seankane-msft authored May 21, 2021
1 parent ea11f0a commit a1daec0
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from typing import Union, Any
from typing import TYPE_CHECKING

from ._models import AccountSasPermissions
from ._common_conversion import _sign_string
Expand All @@ -15,13 +15,15 @@
QueryStringConstants,
)

if TYPE_CHECKING:
from typing import Any, Union

def generate_account_sas(
credential, # type: AzureNamedKeyCredential
resource_types, # type:ResourceTypes
permission, # type:Union[str,AccountSasPermissions]
expiry, # type:Union[datetime,str]
**kwargs # type:Any
resource_types, # type: ResourceTypes
permission, # type: Union[str,AccountSasPermissions]
expiry, # type: Union[datetime,str]
**kwargs # type: Any
):
# type: (...) -> str
"""
Expand Down

0 comments on commit a1daec0

Please sign in to comment.