From c79cb95ddb791a26d0e6868d36b94a95c237b9d2 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:51:44 +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 3370b08d2..b917b0f3b 100644 --- a/divide_and_conquer/power.py +++ b/divide_and_conquer/power.py @@ -27,7 +27,7 @@ def actual_power(a: int, b: int): return half * half else: return a * half * half - + def power(a: int, b: int) -> float: """ :param a: The base (integer).