Skip to content

Commit 13e66c1

Browse files
author
chien liu
authored
Fix typo power_using_recursion.py (TheAlgorithms#11083)
1 parent c7a1331 commit 13e66c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maths/power_using_recursion.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def power(base: int, exponent: int) -> float:
4343

4444

4545
if __name__ == "__main__":
46-
from doctests import testmod
46+
from doctest import testmod
4747

4848
testmod()
4949
print("Raise base to the power of exponent using recursion...")

0 commit comments

Comments
 (0)