From c89ab46f30501778b3156f07dd7fb4b339e056ca Mon Sep 17 00:00:00 2001 From: danielpbittner Date: Sun, 26 Oct 2025 16:52:40 -0500 Subject: [PATCH 1/2] fixed lacking number2 reference in math.py 'addition' --- 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 09c649634e2bd3cc5348e3b5e542aedb6183ed26 Mon Sep 17 00:00:00 2001 From: danielpbittner Date: Sun, 26 Oct 2025 16:59:55 -0500 Subject: [PATCH 2/2] Altered the 'hello' response string in views.py --- 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..066c1823 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!') def two_plus_two(request):