Skip to content

Commit ebe8cf7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5b874a6 commit ebe8cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maths/series/maths/series/arithmetic_mean.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ def compute_arithmetic_mean(*args: float) -> float:
3838
except (TypeError, ValueError) as error:
3939
return f"Error: {error}"
4040

41-
41+
4242
if __name__ == "__main__":
4343
from doctest import testmod
4444

4545
testmod(name="compute_arithmetic_mean")
4646
print(compute_arithmetic_mean(1, 2, 3, 4, 5))
47-
print(compute_arithmetic_mean('a', 69))
47+
print(compute_arithmetic_mean("a", 69))
4848
print(compute_arithmetic_mean())

0 commit comments

Comments
 (0)