From fe3d3d8593d9a66b16ac6275b6de1fe75059f6a3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 8 Feb 2025 09:56:30 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- divide_and_conquer/power.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/divide_and_conquer/power.py b/divide_and_conquer/power.py index c5846db65..e29932f9d 100644 --- a/divide_and_conquer/power.py +++ b/divide_and_conquer/power.py @@ -29,7 +29,7 @@ def actual_power(a: int, b: int): return a * half * half def power(a: int, b: int) -> float: - """ + """ :param a: The base (integer). :param b: The exponent (integer). :return: The result of a^b, as a float for negative exponents.