Skip to content

Commit

Permalink
fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fortunka committed Feb 18, 2025
1 parent 3071739 commit a7cf115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api_app/services/aad_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit a7cf115

Please sign in to comment.