From 87a22d6a420ee6984c354e96e9f103266d295e08 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 12 May 2023 15:49:04 -0700 Subject: [PATCH] better --- examples/hello-world-flask.md | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/hello-world-flask.md b/examples/hello-world-flask.md index 37d3650c5..e1d25f84e 100644 --- a/examples/hello-world-flask.md +++ b/examples/hello-world-flask.md @@ -1,7 +1,6 @@ # Aider creating a simple flask app ---- #### > make a flask app with a /hello endpoint that returns hello world To create a Flask app with a `/hello` endpoint that returns "Hello, World!", we need to install Flask, import it, create an app instance, and define a route for the `/hello` endpoint. Here's how to update the `app.py` file: