From 76cff664d301ce81a3c1a71d5858d17160b43f7a Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 26 Oct 2023 19:18:09 +0200 Subject: [PATCH] root: fix pylint errors Signed-off-by: Jens Langhammer --- authentik/core/api/applications.py | 1 + authentik/core/api/groups.py | 1 + authentik/core/sources/flow_manager.py | 1 + 3 files changed, 3 insertions(+) diff --git a/authentik/core/api/applications.py b/authentik/core/api/applications.py index 478181c28fd9..cb4c01e7682f 100644 --- a/authentik/core/api/applications.py +++ b/authentik/core/api/applications.py @@ -98,6 +98,7 @@ class Meta: class ApplicationViewSet(UsedByMixin, ModelViewSet): """Application Viewset""" + # pylint: disable=no-member queryset = Application.objects.all().prefetch_related("provider") serializer_class = ApplicationSerializer search_fields = [ diff --git a/authentik/core/api/groups.py b/authentik/core/api/groups.py index 4c6a8b509909..21ba19974da5 100644 --- a/authentik/core/api/groups.py +++ b/authentik/core/api/groups.py @@ -139,6 +139,7 @@ class UserAccountSerializer(PassiveSerializer): class GroupViewSet(UsedByMixin, ModelViewSet): """Group Viewset""" + # pylint: disable=no-member queryset = Group.objects.all().select_related("parent").prefetch_related("users") serializer_class = GroupSerializer search_fields = ["name", "is_superuser"] diff --git a/authentik/core/sources/flow_manager.py b/authentik/core/sources/flow_manager.py index a452f04d986a..0fb038d909e7 100644 --- a/authentik/core/sources/flow_manager.py +++ b/authentik/core/sources/flow_manager.py @@ -97,6 +97,7 @@ def get_action(self, **kwargs) -> tuple[Action, Optional[UserSourceConnection]]: if self.request.user.is_authenticated: new_connection.user = self.request.user new_connection = self.update_connection(new_connection, **kwargs) + # pylint: disable=no-member new_connection.save() return Action.LINK, new_connection