From ec27c51dec3ae38a147ec89130ec6ba92ffc5167 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sat, 14 Oct 2023 23:45:48 +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 770a9bec5..c7abce4d3 100755 --- a/bin/prime.py +++ b/bin/prime.py @@ -73,7 +73,7 @@ def prime(n): """Simple program that factors a number using a [[Sieve of Eratosthenes]].""" p, sieve = is_prime(n) if p: - click.echo(f"[[{n}]] is prime.") + click.echo(f"*{n}* is prime.") else: click.echo(f"{n} is not prime. Want proof? :)") click.echo("\n".join([line for line in PROOF if f'[[{n}]]' in line]))