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):