From d3f1d203d4c754e0e67fb7c7fa74bd62fc587934 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 29 Apr 2025 19:22:55 +0200 Subject: [PATCH] argon2: fixes for mypy --- radicale/auth/htpasswd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/auth/htpasswd.py b/radicale/auth/htpasswd.py index fd373707..2972ab35 100644 --- a/radicale/auth/htpasswd.py +++ b/radicale/auth/htpasswd.py @@ -218,7 +218,7 @@ class Auth(auth.BaseAuth): else: return self._plain(hash_value, password) - def _read_htpasswd(self, init: bool, suppress: bool) -> Tuple[bool, int, dict, int, int]: + def _read_htpasswd(self, init: bool, suppress: bool) -> Tuple[bool, int, int, dict, int, int]: """Read htpasswd file init == True: stop on error