From 2bcd8cbca204c62a8e89efb5b8fa039b77a9e415 Mon Sep 17 00:00:00 2001 From: Solis13 <156252616+Solis13@users.noreply.github.com> Date: Wed, 23 Oct 2024 17:29:18 -0500 Subject: [PATCH 1/2] fixed home page message --- 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..be225255 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): From 040d6f22337d816a3a9fe3cf8411901d9f57cdea Mon Sep 17 00:00:00 2001 From: Solis13 <156252616+Solis13@users.noreply.github.com> Date: Wed, 23 Oct 2024 17:40:38 -0500 Subject: [PATCH 2/2] fixed math error in math module --- 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