Fix module import order
This commit is contained in:
parent
8d44182af8
commit
032c9086f8
5 changed files with 7 additions and 7 deletions
|
|
@ -2,14 +2,14 @@
|
|||
# Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
import hashlib
|
||||
import base64
|
||||
import hashlib
|
||||
from collections import OrderedDict
|
||||
|
||||
from django.contrib.auth.hashers import BasePasswordHasher, mask_hash
|
||||
from django.utils.crypto import constant_time_compare
|
||||
from django.utils.encoding import force_bytes
|
||||
from django.utils.translation import gettext_noop as _
|
||||
from django.contrib.auth.hashers import mask_hash, BasePasswordHasher
|
||||
|
||||
|
||||
class SHA512PasswordHasher(BasePasswordHasher):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue