Skip to content

Commit

Permalink
Fixing type definition error.
Browse files Browse the repository at this point in the history
  • Loading branch information
petervarkoly committed Sep 11, 2024
1 parent e05fbeb commit da04d95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion radicale/auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

from radicale import config, types, utils
from radicale.log import logger
from typing import Set

INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
"denyall",
Expand All @@ -52,7 +53,7 @@ def load(configuration: "config.Configuration") -> "BaseAuth":

class BaseAuth:

_ldap_groups: set[str] = set([])
_ldap_groups: Set[str] = set([])
_lc_username: bool
_strip_domain: bool

Expand Down

0 comments on commit da04d95

Please sign in to comment.