Skip to content

Commit

Permalink
Fix Python examples
Browse files Browse the repository at this point in the history
  • Loading branch information
xmo-odoo committed Oct 14, 2014
1 parent 28b58ae commit 39dc709
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ api = Kittn::APIClient.authorize!('meowmeowmeow')
```

```python
import 'kittn'
import kittn

api = Kittn.authorize('meowmeowmeow')
api = kittn.authorize('meowmeowmeow')
```

```shell
Expand Down Expand Up @@ -70,9 +70,9 @@ api.kittens.get
```

```python
import 'kittn'
import kittn

api = Kittn.authorize('meowmeowmeow')
api = kittn.authorize('meowmeowmeow')
api.kittens.get()
```

Expand Down Expand Up @@ -129,9 +129,9 @@ api.kittens.get(2)
```

```python
import 'kittn'
import kittn

api = Kittn.authorize('meowmeowmeow')
api = kittn.authorize('meowmeowmeow')
api.kittens.get(2)
```

Expand Down

0 comments on commit 39dc709

Please sign in to comment.