From: Harmon Date: Mon, 7 Feb 2022 12:02:09 +0000 (-0600) Subject: Improve authentication documentation formatting X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b53cbf5cdc8ea4417b91fe2755b98df5a6a1163a;p=tweepy.git Improve authentication documentation formatting --- diff --git a/docs/authentication.rst b/docs/authentication.rst index d884032..4e1fa2c 100644 --- a/docs/authentication.rst +++ b/docs/authentication.rst @@ -218,8 +218,10 @@ and secret:: "oauth_token": "Request Token (oauth_token) here", "oauth_token_secret": request_secret } - access_token, access_token_secret = new_oauth1_user_handler.get_access_token( - "Verifier (oauth_verifier) here" + access_token, access_token_secret = ( + new_oauth1_user_handler.get_access_token( + "Verifier (oauth_verifier) here" + ) ) Otherwise, you can simply use the old instance of :class:`OAuth1UserHandler`.