From d2c146547bcb26e96c07dece5b30e0bf56c47938 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sun, 24 Sep 2023 19:04:33 +0200 Subject: [PATCH] autopushed --- bin/primes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/primes.py b/bin/primes.py index cc7cd03db..0e63b3440 100755 --- a/bin/primes.py +++ b/bin/primes.py @@ -48,7 +48,7 @@ class AgoraCmd(click.Command): """) @click.command(cls=AgoraCmd) -@click.option('n', type=click.INT) +@click.argument('n', type=click.INT) def prime(n): """Simple program that factors a number using a [[Sieve of Eratosthenes]].""" if is_prime(n):