Skip to content

Commit 656c4b7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 34279a2 commit 656c4b7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

maths/fibonacci.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@
2424

2525
from typing import Any
2626

27+
2728
def time_func(func, *args, **kwargs) -> Any:
2829
"""
2930
Times the execution of a function with parameters
3031
"""
31-
32+
3233
start = time()
3334
output = func(*args, **kwargs)
3435
end = time()

0 commit comments

Comments
 (0)