From 892e8494ff2f795f816a1f160267a0636ba875ba Mon Sep 17 00:00:00 2001 From: Craig Date: Tue, 22 Oct 2024 13:33:57 -0700 Subject: [PATCH] guides: fix typo in python guide Signed-off-by: Craig --- content/guides/python/develop.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/guides/python/develop.md b/content/guides/python/develop.md index 5e47eaf9e03b..da9bd980e0f7 100644 --- a/content/guides/python/develop.md +++ b/content/guides/python/develop.md @@ -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 '{ @@ -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' ```