summaryrefslogtreecommitdiff
path: root/searx/answerers
diff options
context:
space:
mode:
Diffstat (limited to 'searx/answerers')
-rw-r--r--searx/answerers/random/answerer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/answerers/random/answerer.py b/searx/answerers/random/answerer.py
index e6c383330..059dd7c87 100644
--- a/searx/answerers/random/answerer.py
+++ b/searx/answerers/random/answerer.py
@@ -8,7 +8,7 @@ from flask_babel import gettext
# specifies which search query keywords triggers this answerer
keywords = ('random',)
-random_int_max = 2 ** 31
+random_int_max = 2**31
random_string_letters = string.ascii_lowercase + string.digits + string.ascii_uppercase