From c0c96de409068f675b5f3d2a00072605083a2c57 Mon Sep 17 00:00:00 2001 From: PreciousEdmund <131344840+PreciousEdmund@users.noreply.github.com> Date: Wed, 14 Jun 2023 15:24:20 +0000 Subject: [PATCH] changed test_add to pass --- calculator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/calculator.py b/calculator.py index feefb4e3..969f08a4 100644 --- a/calculator.py +++ b/calculator.py @@ -1,5 +1,6 @@ # Demo Calculator App For Week 1 Project # Addition Method + def add(a, b): return a + b