diff --git a/sdk/storage/azure-storage-queue/README.md b/sdk/storage/azure-storage-queue/README.md index e29b9b37ef68..cfa85dcdb20c 100644 --- a/sdk/storage/azure-storage-queue/README.md +++ b/sdk/storage/azure-storage-queue/README.md @@ -117,14 +117,14 @@ The `credential` parameter may be provided in a number of different forms, depen Use the returned token credential to authenticate the client: ```python - from azure.identity import DefaultAzureCredential - from azure.storage.queue import QueueServiceClient - token_credential = DefaultAzureCredential() - - queue_service_client = QueueServiceClient( - account_url="https://.queue.core.windows.net", - credential=token_credential - ) + from azure.identity import DefaultAzureCredential + from azure.storage.queue import QueueServiceClient + token_credential = DefaultAzureCredential() + + queue_service_client = QueueServiceClient( + account_url="https://.queue.core.windows.net", + credential=token_credential + ) ``` #### Creating the client from a connection string