From 0dafd7ebaa6bc645d1567ddb3c53520ac0359ef0 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sat, 14 Oct 2023 22:50:22 +0200 Subject: [PATCH] autopushed --- bin/prime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/prime.py b/bin/prime.py index 79e03c9e9..314ffa2e0 100755 --- a/bin/prime.py +++ b/bin/prime.py @@ -44,7 +44,7 @@ def is_prime(n): sieve[i*j] = False except IndexError: continue - echo_sieve(sieve) + # echo_sieve(sieve) return n >= 2 and sieve[n] class AgoraCmd(click.Command):