Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/guides/python/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ Let's create an object with a post method

```console
$ curl -X 'POST' \
'http://0.0.0.0:8001/heroes/' \
'http://localhost:8001/heroes/' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
Expand All @@ -453,7 +453,7 @@ Let's make a get request with the next curl command:

```console
curl -X 'GET' \
'http://0.0.0.0:8001/heroes/' \
'http://localhost:8001/heroes/' \
-H 'accept: application/json'
```

Expand Down
Loading