Skip to content

Commit 93fb7f1

Browse files
committed
pylint
1 parent e6f31df commit 93fb7f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) Microsoft Corporation.
55
# Licensed under the MIT License.
66
# ------------------------------------
7-
# pylint: disable=too-many-lines
7+
# pylint: disable=too-many-lines, protected-access
88
import functools
99
import hashlib
1010
import json
@@ -209,7 +209,7 @@ def prepare_request(next_link=None):
209209
skip_quote=True,
210210
),
211211
}
212-
url = self._client._client.format_url(
212+
url = self._client._client.format_url( # pylint: disable=protected-access
213213
url, **path_format_arguments
214214
) # pylint: disable=protected-access
215215
# Construct parameters
@@ -241,7 +241,7 @@ def prepare_request(next_link=None):
241241
skip_quote=True,
242242
),
243243
}
244-
url = self._client._client.format_url(
244+
url = self._client._client.format_url( # pylint: disable=protected-access
245245
url, **path_format_arguments
246246
) # pylint: disable=protected-access
247247
request = self._client._client.get( # pylint: disable=protected-access

sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) Microsoft Corporation.
55
# Licensed under the MIT License.
66
# ------------------------------------
7-
# pylint: disable=too-many-lines
7+
# pylint: disable=too-many-lines, protected-access
88
import functools
99
import hashlib
1010
import json

0 commit comments

Comments
 (0)