From 0abeea795b3c36a0a15e6c7817a30185357d3695 Mon Sep 17 00:00:00 2001 From: udayakr <37626471+udayakr@users.noreply.github.com> Date: Sat, 9 Feb 2019 11:06:30 +0530 Subject: [PATCH] addition test --- sources/calc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/calc.py b/sources/calc.py index 660cebe..3d417ec 100644 --- a/sources/calc.py +++ b/sources/calc.py @@ -21,6 +21,7 @@ def conv(value): return str(value) # The 'add2' function itself +# This is a function to add two numbers def add2(arg1, arg2): # Convert 'arg1' and 'arg2' to their appropriate types arg1conv = conv(arg1)