From 304f81d3f84ebe66ca37a57c600bef82680510a1 Mon Sep 17 00:00:00 2001 From: Erjan K Date: Fri, 19 Jul 2024 20:00:25 +0200 Subject: [PATCH] Fix readme typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85cb5f8..664cbbf 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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)