mirror of
https://github.com/danbulant/api_docs
synced 2026-05-19 04:08:40 +00:00
Fix Python examples
This commit is contained in:
parent
28b58aed86
commit
39dc7095f7
1 changed files with 6 additions and 6 deletions
|
|
@ -35,9 +35,9 @@ api = Kittn::APIClient.authorize!('meowmeowmeow')
|
|||
```
|
||||
|
||||
```python
|
||||
import 'kittn'
|
||||
import kittn
|
||||
|
||||
api = Kittn.authorize('meowmeowmeow')
|
||||
api = kittn.authorize('meowmeowmeow')
|
||||
```
|
||||
|
||||
```shell
|
||||
|
|
@ -70,9 +70,9 @@ api.kittens.get
|
|||
```
|
||||
|
||||
```python
|
||||
import 'kittn'
|
||||
import kittn
|
||||
|
||||
api = Kittn.authorize('meowmeowmeow')
|
||||
api = kittn.authorize('meowmeowmeow')
|
||||
api.kittens.get()
|
||||
```
|
||||
|
||||
|
|
@ -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)
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue