Skip to content

Commit 42b4444

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
fixup! Format Python code with psf/black push
1 parent e178af4 commit 42b4444

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

maths/prime_numbers.py

+1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,6 @@ def primes(max: int) -> Generator[int, None, None]:
6565

6666
# Let's benchmark them side-by-side...
6767
from timeit import timeit
68+
6869
print(timeit("slow_primes(1_000_000)", setup="from __main__ import slow_primes"))
6970
print(timeit("primes(1_000_000)", setup="from __main__ import primes"))

0 commit comments

Comments
 (0)