Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ratheesh-aot committed Apr 4, 2024
1 parent 144a068 commit 1e46366
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion met-api/src/met_api/services/keycloak.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def get_users_roles(self, user_ids: List):
for user_id in user_ids:
query_user_url = (f'{self.base_url}/{self.integration_id}/'
f'{self.environment}/users/{user_id}/roles')
print(query_user_url)
response = requests.get(query_user_url, headers=headers, timeout=self.timeout)
if response.status_code == 200:
if (roles := response.json().get('data')) is not None:
Expand Down

0 comments on commit 1e46366

Please sign in to comment.