From dfe4954b221d73adfe9fc641643a69ec073e2aea Mon Sep 17 00:00:00 2001 From: Michal Petrik Date: Tue, 11 Oct 2022 10:34:11 +0200 Subject: [PATCH] Update final-exercise.md --- .../03-intermediate-python/80-web-frameworks/final-exercise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/03-intermediate-python/80-web-frameworks/final-exercise.md b/website/content/03-intermediate-python/80-web-frameworks/final-exercise.md index 8b0b065..d267906 100644 --- a/website/content/03-intermediate-python/80-web-frameworks/final-exercise.md +++ b/website/content/03-intermediate-python/80-web-frameworks/final-exercise.md @@ -196,7 +196,7 @@ If it's a `POST`, we'll grab the `languages` variable from the request form and selected_languages = request.form.getlist("languages") ``` -Now, we just need to get our results and render our website. Call the `repos_with_most_stars()` function in `api.py` and pass it our `selected_languages`. +Now, we just need to get our results and render our website. Call the `repos_with_most_stars()` function in `app.py` and pass it our `selected_languages`. Then, we'll return our flask `render_template()` function and pass it our list of selected languages, available languages, and our results.