diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 00000000..26d33521
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 00000000..105ce2da
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 00000000..75997a59
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 00000000..a7b5619e
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/python-unittest-action.iml b/.idea/python-unittest-action.iml
new file mode 100644
index 00000000..8d1f237f
--- /dev/null
+++ b/.idea/python-unittest-action.iml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 00000000..35eb1ddf
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
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
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):