From 2da9a200b27ff9ac2dccf543780b740a0ea83b75 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sun, 24 Sep 2023 18:50:59 +0200 Subject: [PATCH] autopushed --- bin/primes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/primes.py b/bin/primes.py index 3020f874a..166891432 100755 --- a/bin/primes.py +++ b/bin/primes.py @@ -41,8 +41,6 @@ def is_prime(n): @click.command() @click.argument('n', type=click.INT) -@click.option('-f', '--from', 'n0', type=click.INT, help="Lower bound of the range to factor.") -@click.option('-t', '--to', 'n1', type=click.INT, help="Upper bound of the range to factor.") def prime(n, n0, n1): """Simple program that factors a number using a [[Sieve of Eratosthenes]].""" if is_prime(n):