Выдает ошибку в третьей строке:IndentationError: unindent does not match any outer indentation level
не могу понять, почему его не устроили отступы.......
def points(games):
count = 0
for x, y in games:
if x > y:
count = count + 3
elif x < y:
pass
elif x == y:
count = count + 1
return count