Skip to content

Commit f57c425

Browse files
Merge pull request #224058 from vmagelo/patch-11
Wrap import in backticks.
2 parents 710b0e3 + e4da8d0 commit f57c425

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

articles/service-bus-messaging/service-bus-python-how-to-use-queues.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To use this quickstart with your own Azure account:
4848

4949
### [Connection string](#tab/connection-string)
5050

51-
Note down the following, which you'll use in the code below:
51+
Note the following, which you'll use in the code below:
5252
* Service Bus namespace **connection string**
5353
* Service Bus namespace **queue** you created
5454

@@ -69,7 +69,7 @@ Note down the following, which you'll use in the code below:
6969

7070
1. To install the required Python packages for this Service Bus tutorial, open a command prompt that has Python in its path, change the directory to the folder where you want to have your samples.
7171

72-
1. Install the following packages by running:
72+
1. Install the following packages:
7373

7474
```shell
7575
pip install azure-servicebus
@@ -81,11 +81,10 @@ Note down the following, which you'll use in the code below:
8181

8282
1. To install the required Python packages for this Service Bus tutorial, open a command prompt that has Python in its path, change the directory to the folder where you want to have your samples.
8383

84-
1. Install the following packages by running:
84+
1. Install the following package:
8585

8686
```bash
8787
pip install azure-servicebus
88-
pip install aiohttp
8988
```
9089

9190
---
@@ -328,15 +327,15 @@ Open your favorite editor, such as [Visual Studio Code](https://code.visualstudi
328327
await credential.close()
329328
```
330329
331-
1. Call the `run` method and print a message.
330+
1. Call the `run` method.
332331
333332
```python
334333
asyncio.run(run())
335334
```
336335
337336
### [Connection string](#tab/connection-string)
338337
339-
1. Similar to the send sample, add import statements and define constants that you should replace with your own values.
338+
1. Similar to the send sample, add `import` statements and define constants that you should replace with your own values.
340339
341340
```python
342341
import asyncio
@@ -366,7 +365,7 @@ Open your favorite editor, such as [Visual Studio Code](https://code.visualstudi
366365
await receiver.complete_message(msg)
367366
```
368367
369-
1. Call the `run` method and print a message.
368+
1. Call the `run` method.
370369
371370
```python
372371
asyncio.run(run())

0 commit comments

Comments
 (0)