From 051b3b8656eaf21d8a1a5726070b4bee708cc7e6 Mon Sep 17 00:00:00 2001 From: aleescar Date: Wed, 13 Dec 2023 19:40:30 +0100 Subject: [PATCH] fix(mathematics): solved BUG015 --- source/BUG/mathematics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/BUG/mathematics.py b/source/BUG/mathematics.py index 6dcf5f2..90258cf 100644 --- a/source/BUG/mathematics.py +++ b/source/BUG/mathematics.py @@ -121,7 +121,7 @@ def log10_value(a: float) -> float: ''' BUG015: log10_value should return the logarithm in base 10 of the value, not the natural logarithm. ''' - result = math.log(a) + result = math.log10(a) return result