Skip to content

Commit 43cc982

Browse files
author
Tom Augspurger
committed
linting
1 parent 93db397 commit 43cc982

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

zarr/storage.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2253,16 +2253,16 @@ def __init__(self, container=None, prefix='', account_name=None, account_key=Non
22532253
if client is None:
22542254
# deprecated option, try to construct the client for them
22552255
msg = (
2256-
"Providing 'container', 'account_name', 'account_key', and 'blob_service_kwargs' is "
2257-
"deprecated. Provide and instance of 'azure.storage.blob.ContainerClient' as 'client' "
2258-
"instead."
2256+
"Providing 'container', 'account_name', 'account_key', and 'blob_service_kwargs'"
2257+
"is deprecated. Provide and instance of 'azure.storage.blob.ContainerClient' "
2258+
"'client' instead."
22592259
)
22602260
warnings.warn(msg, FutureWarning, stacklevel=2)
22612261
from azure.storage.blob import ContainerClient
22622262
blob_service_kwargs = blob_service_kwargs or {}
22632263
client = ContainerClient(
2264-
"https://{}.blob.core.windows.net/".format(account_name), container, credential=account_key,
2265-
**blob_service_kwargs
2264+
"https://{}.blob.core.windows.net/".format(account_name), container,
2265+
credential=account_key, **blob_service_kwargs
22662266
)
22672267

22682268
self.client = client

0 commit comments

Comments
 (0)