fixed indention problem when pasting docstring

This commit is contained in:
Mark McIntyre 2022-06-29 09:29:35 -04:00
parent 19035ab84f
commit 7d8b5bb1b9

View File

@ -55,7 +55,7 @@ class Calculator():
With only one number provided, just mulitply the With only one number provided, just mulitply the
running total with the lone value. running total with the lone value.
""" """
running_total = self.total running_total = self.total
if val2: if val2:
total = val1 * val2 total = val1 * val2