Skip to content

Commit

Permalink
Part 2 of Pylint disables (Azure#24022)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenttran-msft authored Apr 20, 2022
1 parent caeb3b4 commit be22436
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
ContainerClient = TypeVar("ContainerClient")


class BlobLeaseClient(object):
class BlobLeaseClient(object): # pylint: disable=client-accepts-api-version-keyword
"""Creates a new BlobLeaseClient.
This client provides lease operations on a BlobClient or ContainerClient.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
DataLakeFileClient = TypeVar("DataLakeFileClient")


class DataLakeLeaseClient(object):
class DataLakeLeaseClient(object): # pylint: disable=client-accepts-api-version-keyword
"""Creates a new DataLakeLeaseClient.
This client provides lease operations on a FileSystemClient, DataLakeDirectoryClient or DataLakeFileClient.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
DataLakeFileClient = TypeVar("DataLakeFileClient")


class DataLakeLeaseClient(DataLakeLeaseClientBase):
class DataLakeLeaseClient(DataLakeLeaseClientBase): # pylint: disable=client-accepts-api-version-keyword
"""Creates a new DataLakeLeaseClient.
This client provides lease operations on a FileSystemClient, DataLakeDirectoryClient or DataLakeFileClient.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ShareClient = TypeVar("ShareClient")


class ShareLeaseClient(object):
class ShareLeaseClient(object): # pylint: disable=client-accepts-api-version-keyword
"""Creates a new ShareLeaseClient.
This client provides lease operations on a ShareClient or ShareFileClient.
Expand Down

0 comments on commit be22436

Please sign in to comment.