Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 5b97212

Browse files
committed
README: fix minor nits
1 parent 5501267 commit 5b97212

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Examples
2323
### List projects
2424

2525
```python
26-
import packet
26+
import packet
2727
manager = packet.Manager(auth_token="yourapiauthtoken")
2828

2929
projects = manager.list_projects()
@@ -47,7 +47,7 @@ for plan in plans:
4747
### Creating a Device
4848

4949
```python
50-
import packet
50+
import packet
5151
manager = packet.Manager(auth_token="yourapiauthtoken")
5252

5353
device = manager.create_device(project_id='project-id',
@@ -60,7 +60,7 @@ print(device)
6060
### Checking the status and rebooting a Device
6161

6262
```python
63-
import packet
63+
import packet
6464
manager = packet.Manager(auth_token="yourapiauthtoken")
6565

6666
device = manager.get_device('device-id')
@@ -70,7 +70,7 @@ device.reboot()
7070

7171
### Listing all devices, limiting to 50 per page
7272

73-
// Packet API defaults to a limit of 10 per page
73+
_Packet API defaults to a limit of 10 per page_
7474

7575
```python
7676
import packet

0 commit comments

Comments
 (0)