autopushed

This commit is contained in:
2023-10-14 21:54:58 +02:00
parent a4cd9dc251
commit e1985bd945
+1 -1
View File
@@ -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):