From adbe98c0eddd7166afe77b271c88d7aa594d6c98 Mon Sep 17 00:00:00 2001 From: mayokunl <153923029+mayokunl@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:08:49 -0500 Subject: [PATCH 1/2] Add GitHub Actions workflow to run tests --- .github/workflows/python-tests.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/workflows/python-tests.yml diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml new file mode 100644 index 0000000..e69de29 From 266a0d45f0b5e7b32509bd7dcd0677cd8995901b Mon Sep 17 00:00:00 2001 From: mayokunl <153923029+mayokunl@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:12:49 -0500 Subject: [PATCH 2/2] staging to branch --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 8d0b480..7af49ee 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ class Calculator: """A simple calculator with basic arithmetic operations.""" def add(self, a, b): - return a + b + return a - b def subtract(self, a, b): return a - b