1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-29 16:55:32 +00:00

Fix isort test

Was broken by isort>=5
This commit is contained in:
Unrud 2020-07-23 18:42:43 +02:00
parent 46b1fd47ea
commit c471ee5603
2 changed files with 2 additions and 2 deletions

View file

@ -57,8 +57,8 @@ class TestBaseAuthRequests(BaseTest):
``test_matrix`` "unicode"."""
if htpasswd_encryption == "bcrypt":
try:
from passlib.hash import bcrypt
from passlib.exc import MissingBackendError
from passlib.hash import bcrypt
except ImportError:
pytest.skip("passlib[bcrypt] is not installed")
try: