Skip to content

Commit

Permalink
Merge pull request #116 from xmo-odoo/patch-1
Browse files Browse the repository at this point in the history
Fix Python examples
  • Loading branch information
lord committed Oct 14, 2014
2 parents 28b58ae + 39dc709 commit 3530073
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 3530073

Please sign in to comment.