Skip to content

Commit 9ee43a0

Browse files
authored
Update maths/numerical_analysis/proper_fractions.py
1 parent 0c65134 commit 9ee43a0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

maths/numerical_analysis/proper_fractions.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,6 @@ def proper_fractions(denominator: int) -> list[str]:
3333

3434

3535
if __name__ == "__main__":
36-
doctest.testmod()
36+
from doctest import testmod
37+
38+
testmod()

0 commit comments

Comments
 (0)