From 9976d1d900db8928f3fdb2a36efdc79bb3cc92bb Mon Sep 17 00:00:00 2001 From: fd7794 Date: Tue, 6 Feb 2024 12:00:43 +0100 Subject: [PATCH] refactoring: simplified return statement for exponent 0 --- src/main/py/read_math_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/py/read_math_function.py b/src/main/py/read_math_function.py index 1cf429e..d90b11a 100644 --- a/src/main/py/read_math_function.py +++ b/src/main/py/read_math_function.py @@ -84,7 +84,7 @@ def simplify_exponential_function(type, function): new_coefficient = coefficient * exponent new_exponent = exponent - 1 if new_exponent == 0: - result = [str(new_coefficient)] + return [str(new_coefficient)] elif new_exponent == 1: result = [f"{new_coefficient}x"] else: