From e1985bd9454be768f09208a339383520ec413b37 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sat, 14 Oct 2023 21:54:58 +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 ff7883ccf..355889050 100755 --- a/bin/prime.py +++ b/bin/prime.py @@ -40,7 +40,7 @@ def is_prime(n): is_prime[i*j] = False except IndexError: continue - click.echo(f"Sieve: {is_prime}.") + print_sieve(is_prime) return is_prime[n] class AgoraCmd(click.Command):