Skip to content

Commit 3b611b0

Browse files
Rishabh BafnaRishabh Bafna
authored andcommitted
fixing ci again
1 parent 4fcf266 commit 3b611b0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

maths/series/catalan_numbers.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
"""
1010

1111
from __future__ import annotations
12-
import math
13-
1412

1513
def catalan_numbers(count: int) -> list[int]:
1614
"""
@@ -64,10 +62,9 @@ def catalan_numbers(count: int) -> list[int]:
6462

6563

6664
if __name__ == "__main__":
65+
import math
6766
import doctest
68-
6967
doctest.testmod()
70-
7168
try:
7269
num = int(input("Enter the number of Catalan numbers to generate: "))
7370
if num < 0:

0 commit comments

Comments
 (0)