From 04fabb3c6d02f045bde3c65178ce75df3b07eb3b Mon Sep 17 00:00:00 2001 From: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:54:55 -0700 Subject: [PATCH] guides: fix typo in python guide (#21208) 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 5e47eaf9e0..da9bd980e0 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' ```