From d3f3566b72083e43117c02ddaa22c8a4991f9272 Mon Sep 17 00:00:00 2001 From: "r.qui" Date: Mon, 20 Oct 2025 19:06:00 -0500 Subject: [PATCH 1/2] First issue fixed --- hello_app/math.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello_app/math.py b/hello_app/math.py index 4dda51a0..aec6c3ce 100644 --- a/hello_app/math.py +++ b/hello_app/math.py @@ -1,3 +1,3 @@ def addition(number1, number2): # there seems to be a bug in this code - return number1 + 9999999997 \ No newline at end of file + return number1 + number2 \ No newline at end of file From d37cb0a5d408fcd0921c9472c4ce36d25aefb3eb Mon Sep 17 00:00:00 2001 From: "r.qui" Date: Mon, 20 Oct 2025 19:10:54 -0500 Subject: [PATCH 2/2] Second issue fixed --- hello_app/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello_app/views.py b/hello_app/views.py index 27c91079..eff2fb7b 100644 --- a/hello_app/views.py +++ b/hello_app/views.py @@ -3,7 +3,7 @@ def hello(request): - return HttpResponse('Go away!') + return HttpResponse('Hello everyone!') def two_plus_two(request):