mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Fixing type definition error.
This commit is contained in:
parent
e05fbeb950
commit
da04d95b75
1 changed files with 2 additions and 1 deletions
|
@ -33,6 +33,7 @@ from typing import Sequence, Tuple, Union
|
||||||
|
|
||||||
from radicale import config, types, utils
|
from radicale import config, types, utils
|
||||||
from radicale.log import logger
|
from radicale.log import logger
|
||||||
|
from typing import Set
|
||||||
|
|
||||||
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
||||||
"denyall",
|
"denyall",
|
||||||
|
@ -52,7 +53,7 @@ def load(configuration: "config.Configuration") -> "BaseAuth":
|
||||||
|
|
||||||
class BaseAuth:
|
class BaseAuth:
|
||||||
|
|
||||||
_ldap_groups: set[str] = set([])
|
_ldap_groups: Set[str] = set([])
|
||||||
_lc_username: bool
|
_lc_username: bool
|
||||||
_strip_domain: bool
|
_strip_domain: bool
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue