From cd611bb24f4b1522447838d67a9805fac4d6af46 Mon Sep 17 00:00:00 2001 From: Andrew Chasin Date: Mon, 23 Oct 2023 12:00:23 -0400 Subject: [PATCH] change sample to test --- code/hello-python/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/hello-python/main.py b/code/hello-python/main.py index 51aba2e..8cb9c64 100644 --- a/code/hello-python/main.py +++ b/code/hello-python/main.py @@ -24,7 +24,7 @@ @app.route("/") def hello_world(): - """Sample Deployment Test.""" + """Test Deployment Test.""" name = os.environ.get("NAME", "World") return f"Hello {name}!"