From c287685d323d112693e1f4d6b007cb2bda63fca7 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Mon, 3 Oct 2022 18:47:06 -0500 Subject: [PATCH] remove def get_key_and_secret --- wp_oauth_backend/wp_oauth.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/wp_oauth_backend/wp_oauth.py b/wp_oauth_backend/wp_oauth.py index 08b9368..8fb5471 100644 --- a/wp_oauth_backend/wp_oauth.py +++ b/wp_oauth_backend/wp_oauth.py @@ -63,6 +63,3 @@ class WPOAuth2(BaseOAuth2): def get_username(self, strategy, details, backend, user=None, *args, **kwargs): return details['username'] - - def get_key_and_secret(self): - return (self.CLIENT_ID, self.CLIENT_SECRET)