diff --git a/source/BUG/mathematics.py b/source/BUG/mathematics.py index 6dcf5f2..eaf410b 100644 --- a/source/BUG/mathematics.py +++ b/source/BUG/mathematics.py @@ -89,7 +89,7 @@ def neg_value(a: int) -> int: ''' BUG011: neg_value should return the negation of the value, not the value itself. ''' - result = a + result = -a return result