in container/prime-flask-server.py [0:0]
def sum_primes(num): sum = 0 while (num > 1): if is_prime(num): sum = sum+num num = num - 1 return sum