From b7279b474919a9252512bf0849ddab2454b3a293 Mon Sep 17 00:00:00 2001 From: abhinaya08 Date: Thu, 15 Nov 2018 21:00:31 -0600 Subject: [PATCH] fixed bug in my sum as reported in Issue #24 --- sprint_tutorial/compute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sprint_tutorial/compute.py b/sprint_tutorial/compute.py index f0934c1..b0bc146 100644 --- a/sprint_tutorial/compute.py +++ b/sprint_tutorial/compute.py @@ -5,4 +5,4 @@ def my_sum(x, y): """ Compute the sum of 2 numbers """ - return 2*(x + y) + return (x + y)