1
0
mirror of https://github.com/searxng/searxng.git synced 2024-11-22 04:01:40 +01:00

[fix] pep8

This commit is contained in:
Adam Tauber 2016-11-19 21:18:12 +01:00
parent 7eed8a5dd9
commit 0724bd8168

View File

@ -31,7 +31,7 @@ def answer(query):
elif func == 'max':
answer = max(args)
elif func == 'avg':
answer = sum(args)/len(args)
answer = sum(args) / len(args)
elif func == 'sum':
answer = sum(args)
elif func == 'prod':