Improve types.

This commit is contained in:
Tom Hacohen
2021-01-04 11:56:17 +02:00
parent 9bf118225d
commit 9f0430a6da
2 changed files with 5 additions and 5 deletions

View File

@@ -125,7 +125,7 @@ def get_login_user(request: Request, challenge: LoginChallengeIn) -> UserType:
raise AuthenticationFailed(code="user_not_found", detail="User not found")
def get_encryption_key(salt):
def get_encryption_key(salt: bytes):
key = nacl.hash.blake2b(settings.SECRET_KEY.encode(), encoder=nacl.encoding.RawEncoder)
return nacl.hash.blake2b(
b"",