Skip to content

Commit

Permalink
fixed indentation readme issue for queue (Azure#37614)
Browse files Browse the repository at this point in the history
  • Loading branch information
weirongw23-msft authored and w-javed committed Oct 3, 2024
1 parent 55db811 commit bc5173a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sdk/storage/azure-storage-queue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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://<my_account_name>.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://<my_account_name>.queue.core.windows.net",
credential=token_credential
)
```

#### Creating the client from a connection string
Expand Down

0 comments on commit bc5173a

Please sign in to comment.