1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

argon2: make isort happy

This commit is contained in:
Peter Bieringer 2025-04-29 19:41:48 +02:00
parent db811245e8
commit 7b49bab471
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ class TestBaseAuthRequests(BaseTest):
# test for available argon2 module
try:
import argon2
from passlib.hash import argon2 # noqa: F811 (required to detect missing argon2-cffi)
from passlib.hash import argon2 # noqa: F811
except ImportError:
has_argon2 = 0
else: