Skip to content

Commit 8358530

Browse files
committed
Remove unsupported keyword arg
1 parent cef32da commit 8358530

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/c_extension_example/src/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ def main():
1515
# if the jit-accelerated function is only run once, it is much slower
1616
# than if it had not been accelerated. This is due to the extra compile-step.
1717
for _ in range(1_000_000):
18-
fib(limit=1_000_000)
18+
fib(1_000_000)
1919

20-
print(f"Result is {fib(limit=1_000_000)=}")
20+
print(f"Result is {fib(1_000_000)=}")
2121
print(f"Time taken: {time.perf_counter() - initial}")
2222

2323

0 commit comments

Comments
 (0)