From 7d8b5bb1b991a3757ec9b03cd10c230271683e46 Mon Sep 17 00:00:00 2001 From: Mark McIntyre Date: Wed, 29 Jun 2022 09:29:35 -0400 Subject: [PATCH] fixed indention problem when pasting docstring --- calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calculator.py b/calculator.py index b4b6c4a..0f2946e 100644 --- a/calculator.py +++ b/calculator.py @@ -55,7 +55,7 @@ class Calculator(): With only one number provided, just mulitply the running total with the lone value. """ - running_total = self.total + running_total = self.total if val2: total = val1 * val2