making lint happy, running make test-python doesn't run lint

This commit is contained in:
Hossein Shafagh 2020-09-18 21:58:53 -07:00
parent 21e9a4508d
commit 1632b4b078
2 changed files with 9 additions and 9 deletions

View File

@ -11,10 +11,10 @@ debug = os.environ.get("DEBUG") == "True"
def get_random_secret(length):
secret_key = ''.join(random.choice(string.ascii_uppercase) for x in range(round(length/4)))
secret_key = secret_key + ''.join(random.choice("~!@#$%^&*()_+") for x in range(round(length/4)))
secret_key = secret_key + ''.join(random.choice(string.ascii_lowercase) for x in range(round(length/4)))
return secret_key + ''.join(random.choice(string.digits) for x in range(round(length/4)))
secret_key = ''.join(random.choice(string.ascii_uppercase) for x in range(round(length / 4)))
secret_key = secret_key + ''.join(random.choice("~!@#$%^&*()_+") for x in range(round(length / 4)))
secret_key = secret_key + ''.join(random.choice(string.ascii_lowercase) for x in range(round(length / 4)))
return secret_key + ''.join(random.choice(string.digits) for x in range(round(length / 4))) soi
SECRET_KEY = repr(os.environ.get('SECRET_KEY', get_random_secret(32).encode('utf8')))

View File

@ -1,19 +1,19 @@
# This is just Python which means you can inherit and tweak settings
import base64
import os
import random
import string
import base64
_basedir = os.path.abspath(os.path.dirname(__file__))
# generate random secrets for unittest
def get_random_secret(length):
secret_key = ''.join(random.choice(string.ascii_uppercase) for x in range(round(length/4)))
secret_key = secret_key + ''.join(random.choice("~!@#$%^&*()_+") for x in range(round(length/4)))
secret_key = secret_key + ''.join(random.choice(string.ascii_lowercase) for x in range(round(length/4)))
return secret_key + ''.join(random.choice(string.digits) for x in range(round(length/4)))
secret_key = ''.join(random.choice(string.ascii_uppercase) for x in range(round(length / 4)))
secret_key = secret_key + ''.join(random.choice("~!@#$%^&*()_+") for x in range(round(length / 4)))
secret_key = secret_key + ''.join(random.choice(string.ascii_lowercase) for x in range(round(length / 4)))
return secret_key + ''.join(random.choice(string.digits) for x in range(round(length / 4)))
THREADS_PER_PAGE = 8