Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Lysikov committed Nov 27, 2023
1 parent 4058c83 commit f7860d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flask_appbuilder/security/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,10 @@ def _search_ldap(self, ldap, con, username):
nested_groups_filter_str,
nested_groups_request_fields,

Check warning on line 988 in flask_appbuilder/security/manager.py

View check run for this annotation

Codecov / codecov/patch

flask_appbuilder/security/manager.py#L988

Added line #L988 was not covered by tests
)
log.debug("LDAP search for nested groups returned: %s", nested_groups_search_result)
log.debug(

Check warning on line 990 in flask_appbuilder/security/manager.py

View check run for this annotation

Codecov / codecov/patch

flask_appbuilder/security/manager.py#L990

Added line #L990 was not covered by tests
"LDAP search for nested groups returned: %s",
nested_groups_search_result,
)

Check warning on line 993 in flask_appbuilder/security/manager.py

View check run for this annotation

Codecov / codecov/patch

flask_appbuilder/security/manager.py#L993

Added line #L993 was not covered by tests

nested_groups = [

Check warning on line 995 in flask_appbuilder/security/manager.py

View check run for this annotation

Codecov / codecov/patch

flask_appbuilder/security/manager.py#L995

Added line #L995 was not covered by tests
x[0].encode() for x in nested_groups_search_result if x[0] is not None
Expand Down

0 comments on commit f7860d0

Please sign in to comment.