Skip to content

Commit

Permalink
Fix readme typo
Browse files Browse the repository at this point in the history
  • Loading branch information
erjanmx authored and marclove committed Jul 20, 2024
1 parent 73c24f2 commit 304f81d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ responsibility for closing it. You must use the `API` object as an async
context manager if you want it to manage a session for you:

```python
# Retrieve the user's credentials from whereever you're storing them:
# Retrieve the user's credentials from wherever you're storing them:
credentials = Credentials.from_json(stored_json)

async with API(credentials=credentials) as api:
Expand All @@ -161,7 +161,7 @@ session for all requests):
# Create an `aiohttp.ClientSession` at some point:
session = aiohttp.ClientSession()

# Retrieve the user's credentials from whereever you're storing them:
# Retrieve the user's credentials from wherever you're storing them:
credentials = Credentials.from_json(stored_json)

api = API(credentials=credentials, session=session)
Expand Down

0 comments on commit 304f81d

Please sign in to comment.