Skip to content

Commit 9baa3af

Browse files
committed
Fix: align error message with datasets
1 parent 1c57978 commit 9baa3af

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
@@ -23,10 +23,11 @@
2323
from numpy import ndarray
2424

2525

26-
def time_func(func, *args, **kwargs):
26+
def time_func(func, *args, **kwargs) -> object:
2727
"""
2828
Times the execution of a function with parameters
2929
"""
30+
3031
start = time()
3132
output = func(*args, **kwargs)
3233
end = time()

0 commit comments

Comments
 (0)