Skip to content

Commit

Permalink
Fix variable
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc committed Nov 19, 2024
1 parent 50d43ac commit 435fdf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egi_notebooks_hub/egiauthenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def build_access_tokens_request_params(self, handler, data=None):
return super().build_access_tokens_request_params(handler, data)

async def get_token_info(self, handler, params):
if "data" in params and params["data"] and data["introspect"]:
if "data" in params and params["data"] and params["data"]["introspect"]:
# access token is already here no need to do anything else
return params["data"]
else:
Expand Down

0 comments on commit 435fdf3

Please sign in to comment.