about summary refs log tree commit diff
path: root/gn_auth/auth/authentication/oauth2/endpoints/revocation.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-05-21 09:56:50 -0500
committerFrederick Muriuki Muriithi2026-05-21 12:40:39 -0500
commitbd1b759f3c822931f1833beb62f351e80756aff8 (patch)
tree29b806a7605dedfa932a36df27e575738ec41e66 /gn_auth/auth/authentication/oauth2/endpoints/revocation.py
parent22e306bb1107e15318416daa7aee42d2642f16d3 (diff)
downloadgn-auth-bd1b759f3c822931f1833beb62f351e80756aff8.tar.gz
Remove unused argument/parameter from function.
Diffstat (limited to 'gn_auth/auth/authentication/oauth2/endpoints/revocation.py')
-rw-r--r--gn_auth/auth/authentication/oauth2/endpoints/revocation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authentication/oauth2/endpoints/revocation.py b/gn_auth/auth/authentication/oauth2/endpoints/revocation.py
index 80922f1..0979694 100644
--- a/gn_auth/auth/authentication/oauth2/endpoints/revocation.py
+++ b/gn_auth/auth/authentication/oauth2/endpoints/revocation.py
@@ -15,7 +15,7 @@ class RevocationEndpoint(_RevocationEndpoint):
     CLIENT_AUTH_METHODS = ['client_secret_post']
     def query_token(self, token_string: str, token_type_hint: str):
         """Query the token."""
-        return _query_token(self, token_string, token_type_hint)
+        return _query_token(token_string, token_type_hint)
 
     def revoke_token(self, token: OAuth2Token, request):
         """Revoke token `token`."""