From a7cf11556502cac4a7a7862e22b6c444024e54ed Mon Sep 17 00:00:00 2001 From: Matthew Fortunka Date: Tue, 18 Feb 2025 14:17:17 +0000 Subject: [PATCH] fixed linting issue --- api_app/services/aad_authentication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_app/services/aad_authentication.py b/api_app/services/aad_authentication.py index 4ffca5e4f..e0fab7460 100644 --- a/api_app/services/aad_authentication.py +++ b/api_app/services/aad_authentication.py @@ -320,7 +320,7 @@ def get_workspace_users(self, workspace: Workspace) -> List[User]: def get_assignable_users(self, filter: str = "", maxResultCount: int = 5) -> List[AssignableUser]: msgraph_token = self._get_msgraph_token() users_endpoint = f"{MICROSOFT_GRAPH_URL}/v1.0/users?$filter=startswith(displayName,'{filter}')&$top={maxResultCount}" - + graph_data = requests.get(users_endpoint, headers=self._get_auth_header(msgraph_token)).json() result = []