Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
blagojabozinovski committed Feb 28, 2024
1 parent 25bebc1 commit e124700
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ckanext/keycloak/keycloak.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def get_token(self, code, redirect_uri):
return self.get_keycloak_client().token(grant_type="authorization_code", code=code, redirect_uri=redirect_uri)

def get_user_info(self, token):
print (token.get('access_token'))
return self.get_keycloak_client().userinfo(token.get('access_token'))

def get_user_groups(self, token):
Expand Down

0 comments on commit e124700

Please sign in to comment.