From 2fa07bd619040dd7766601b7e4966efb6b2503eb Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sat, 10 Nov 2018 13:48:31 +0100 Subject: Fix a typo. --- bot/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/api.py b/bot/api.py index 20522d154..04b684b38 100644 --- a/bot/api.py +++ b/bot/api.py @@ -29,10 +29,10 @@ class APIClient: async with self.session.get(self._url_for(endpoint), *args, **kwargs) as resp: return await resp.json() - async def post(self, endpoint: str, *args. **kwargs): + async def post(self, endpoint: str, *args, **kwargs): async with self.session.post(self._url_for(endpoint), *args, **kwargs) as resp: return await resp.json() - async def delete(self, endpoint: str, *args. **kwargs): + async def delete(self, endpoint: str, *args, **kwargs): async with self.session.delete(self._url_for(endpoint), *args, **kwargs) as resp: return await resp.json() -- cgit v1.2.3