remove comment

This commit is contained in:
Torma Kristóf 2019-10-10 15:36:38 +02:00
parent 69d9500f4e
commit 4e59fa8048
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 0 additions and 1 deletions

View File

@ -9,7 +9,6 @@ app = Flask(__name__)
def isprime():
num = os.environ.get('TARGET', '107107')
if num > 1:
# check for factors
for i in range(2, num):
if (num % i) == 0:
return "not prime"