From 29165c63c232e326e7017678a868708c10447dc3 Mon Sep 17 00:00:00 2001 From: fdai7783 Date: Fri, 19 Jan 2024 02:16:08 +0100 Subject: [PATCH] refactoring: renamed function parameters to stay consistent with naming scheme --- src/main/py/logarithmic_and_expo_and_root_calculations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/py/logarithmic_and_expo_and_root_calculations.py b/src/main/py/logarithmic_and_expo_and_root_calculations.py index 98c53f4..5becc90 100644 --- a/src/main/py/logarithmic_and_expo_and_root_calculations.py +++ b/src/main/py/logarithmic_and_expo_and_root_calculations.py @@ -1,8 +1,8 @@ import math -def sqrt(root_of): - return math.sqrt(root_of) +def sqrt(number): + return math.sqrt(number) def potentiate(first_number, second_number):