Skip to content

Commit add4f45

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fibonacci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ def fibonacci(n: int) -> list[int]:
99
return []
1010
fib_seq = [0, 1]
1111
for i in range(2, n):
12-
fib_seq.append(fib_seq[i-1] + fib_seq[i-2])
12+
fib_seq.append(fib_seq[i - 1] + fib_seq[i - 2])
1313
return fib_seq[:n]

0 commit comments

Comments
 (0)