aurweb.util: fix code style violation

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-08-20 16:36:10 -07:00
parent f086457741
commit 6eafb457ec
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -20,8 +20,8 @@ import aurweb.config
def make_random_string(length): def make_random_string(length):
return ''.join(random.choices(string.ascii_lowercase + return ''.join(random.choices(string.ascii_lowercase
string.digits, k=length)) + string.digits, k=length))
def make_nonce(length: int = 8): def make_nonce(length: int = 8):