Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
weibeu committed Oct 4, 2020
1 parent 55480bf commit 9ebbc73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion async_oauthlib/oauth1_auth.py
Expand Up @@ -66,7 +66,7 @@ def __init__(
**kwargs
)

def __call__(self, r):
async def __call__(self, r):
"""Add OAuth parameters to the request.
Parameters may be included from the body if the content-type is
Expand Down
3 changes: 1 addition & 2 deletions async_oauthlib/oauth1_session.py
Expand Up @@ -269,8 +269,7 @@ async def fetch_request_token(self, url, realm=None, **kwargs):
:param url: The request token endpoint URL.
:param realm: A list of realms to request access to.
:param kwargs: Optional arguments passed to ''post''
function in ''aiohttp.ClientSession''
:param kwargs: Optional arguments passed to ''post'' function in ''aiohttp.ClientSession''
:returns: The response in dict format.
Note that a previously set callback_uri will be reset for your
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/outlook.rst
@@ -1,5 +1,5 @@
Outlook Calendar OAuth 2 Tutorial
==========================
=================================

Create a new web application client in the `Microsoft Application Registration Portal`_
When you have obtained a ``client_id``, ``client_secret`` and registered
Expand Down

0 comments on commit 9ebbc73

Please sign in to comment.