Skip to content

Commit

Permalink
Merge pull request #478 from requests/update_docs
Browse files Browse the repository at this point in the history
Updates docs in oauth_session1 to match existing pattern
  • Loading branch information
JonathanHuot committed Feb 18, 2022
2 parents 3431a1b + 74e2f9e commit ea8ca81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requests_oauthlib/oauth1_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def authorization_url(self, url, request_token=None, **kwargs):
return add_params_to_uri(url, kwargs.items())

def fetch_request_token(self, url, realm=None, **request_kwargs):
r"""Fetch a request token.
"""Fetch a request token.
This is the first step in the OAuth 1 workflow. A request token is
obtained by making a signed post request to url. The token is then
Expand All @@ -267,7 +267,7 @@ def fetch_request_token(self, url, realm=None, **request_kwargs):
:param url: The request token endpoint URL.
:param realm: A list of realms to request access to.
:param \*\*request_kwargs: Optional arguments passed to ''post''
:param request_kwargs: Optional arguments passed to ''post''
function in ''requests.Session''
:returns: The response in dict format.
Expand Down

0 comments on commit ea8ca81

Please sign in to comment.