From 653ef3624314b5df01313980b8020b2862e0243c Mon Sep 17 00:00:00 2001 From: cgtobi Date: Mon, 25 Nov 2019 23:46:28 +0100 Subject: [PATCH] Fix typo (#361) --- docs/api_lib_auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api_lib_auth.md b/docs/api_lib_auth.md index 890b86cb..b9698dc4 100644 --- a/docs/api_lib_auth.md +++ b/docs/api_lib_auth.md @@ -26,7 +26,7 @@ from aiohttp import ClientSession, ClientResponse class Auth: """Class to make authenticated requests.""" - def __init__(self, websession: ClientSession, host: str, , access_token: str): + def __init__(self, websession: ClientSession, host: str, access_token: str): """Initialize the auth.""" self.websession = websession self.host = host