fixes suggested by tox

This commit is contained in:
Peter Bieringer 2024-12-31 18:26:43 +01:00
parent c00ab76c83
commit c1be04abd1
2 changed files with 11 additions and 10 deletions

View file

@ -30,8 +30,8 @@ Take a look at the class ``BaseAuth`` if you want to implement your own.
"""
import hashlib
import time
import threading
import time
from typing import Sequence, Set, Tuple, Union, final
from radicale import config, types, utils

View file

@ -48,12 +48,12 @@ When bcrypt is installed:
"""
import os
import time
import functools
import hmac
import os
import threading
from typing import Any
import time
from typing import Any, Tuple
from passlib.hash import apr_md5_crypt, sha256_crypt, sha512_crypt
@ -66,9 +66,9 @@ class Auth(auth.BaseAuth):
_encoding: str
_htpasswd: dict # login -> digest
_htpasswd_mtime_ns: int
_htpasswd_size: bytes
_htpasswd_size: int
_htpasswd_ok: bool
_htpasswd_not_ok_seconds: int
_htpasswd_not_ok_time: float
_htpasswd_not_ok_reminder_seconds: int
_htpasswd_bcrypt_use: int
_has_bcrypt: bool
@ -154,7 +154,7 @@ class Auth(auth.BaseAuth):
# assumed plaintext
return self._plain(hash_value, password)
def _read_htpasswd(self, init: bool) -> (bool, int):
def _read_htpasswd(self, init: bool) -> Tuple[bool, int]:
"""Read htpasswd file
init == True: stop on error
@ -168,6 +168,7 @@ class Auth(auth.BaseAuth):
else:
info = "Re-read"
logger.info("%s content of htpasswd file start: %r", info, self._filename)
htpasswd: dict[str, str]
htpasswd = dict()
try:
with open(self._filename, encoding=self._encoding) as f:
@ -216,7 +217,7 @@ class Auth(auth.BaseAuth):
if init is True:
raise RuntimeError("Failed to load htpasswd file %r: %s" % (self._filename, e)) from e
else:
logger.warning("Failed to load htpasswd file on re-read: %r" % (self._filename, e))
logger.warning("Failed to load htpasswd file on re-read: %r" % self._filename)
htpasswd_ok = False
else:
self._htpasswd_size = os.stat(self._filename).st_size