py.lib.aw_web_tools

Yohn Y. 2025-10-19 Parent:645c171efc96 Child:6b4e0649e388

16:c53a61e27af8 Browse Files

* Ошибка в написании метода

src/aw_web_tools/authelia_helper.py

     1.1 --- a/src/aw_web_tools/authelia_helper.py	Wed Oct 15 17:32:08 2025 +0300
     1.2 +++ b/src/aw_web_tools/authelia_helper.py	Sun Oct 19 14:23:22 2025 +0300
     1.3 @@ -88,7 +88,7 @@
     1.4              raise AHAuthError()
     1.5  
     1.6          if groups is not None:
     1.7 -            groups = tuple(map(lambda x: x.stip(), groups.split(',')))
     1.8 +            groups = tuple(map(lambda x: x.strip(), groups.split(',')))
     1.9              if self.group_filter is not None:
    1.10                  _groups = []
    1.11                  _buf = set(map(lambda x: x.lower(), groups))