From b53cbf5cdc8ea4417b91fe2755b98df5a6a1163a Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 7 Feb 2022 06:02:09 -0600 Subject: [PATCH] Improve authentication documentation formatting --- docs/authentication.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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`. -- 2.25.1