oops
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-09-11 00:47:04 +02:00
parent cfd8f3b899
commit d17d586f66
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import numpy as np
def avg(ls: list) -> int:
if len != 0:
if len(ls) != 0:
return sum(ls) / len(ls)
else:
return 0