Improve authentication documentation formatting
authorHarmon <Harmon758@gmail.com>
Mon, 7 Feb 2022 12:02:09 +0000 (06:02 -0600)
committerHarmon <Harmon758@gmail.com>
Mon, 7 Feb 2022 12:02:09 +0000 (06:02 -0600)
docs/authentication.rst

index d884032a180748306c2425deccaa29437f2b2ab2..4e1fa2c1e49763f0b7d91a5e0e62c3c93dc6ccca 100644 (file)
@@ -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`.