Skip to content

Commit a98d227

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 746bd0b commit a98d227

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

maths/series/catalan_numbers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
from __future__ import annotations
1212

13+
1314
def catalan_numbers(count: int) -> list[int]:
1415
"""
1516
Generates the first 'count' Catalan numbers (C_0, C_1, ..., C_{count-1}).
@@ -62,8 +63,8 @@ def catalan_numbers(count: int) -> list[int]:
6263

6364

6465
if __name__ == "__main__":
65-
6666
import doctest
67+
6768
doctest.testmod()
6869

6970
try:

0 commit comments

Comments
 (0)