From f8523832d59fa0ffaf7aa3a792d89125fe465e84 Mon Sep 17 00:00:00 2001 From: fdai7783 Date: Fri, 19 Jan 2024 01:54:28 +0100 Subject: [PATCH] refactoring: changed function parameter for further clarity --- 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 3abab62..b9df0fa 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(first_number): - return math.sqrt(first_number) +def sqrt(root_of): + return math.sqrt(root_of) def potentiate(first_number, second_number):