From 4d8dcef8174fde12269407ae807591aeac03a09f Mon Sep 17 00:00:00 2001 From: Daniel Erenrich Date: Sun, 7 Apr 2024 22:59:02 -0700 Subject: [PATCH] fix typo in oauth1.rst --- docs/client/oauth1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/client/oauth1.rst b/docs/client/oauth1.rst index 2fef4225..9db58f06 100644 --- a/docs/client/oauth1.rst +++ b/docs/client/oauth1.rst @@ -181,7 +181,7 @@ Create an instance of OAuth1Auth with an access token:: auth = OAuth1Auth( client_id='..', - client_secret=client_secret='..', + client_secret='..', token='oauth_token value', token_secret='oauth_token_secret value', ...