From c514b61c44b99fa0b9000c38eee7f577ec9812c2 Mon Sep 17 00:00:00 2001 From: Sorrow446 <47045733+Sorrow446@users.noreply.github.com> Date: Sun, 9 Feb 2020 22:40:37 +0000 Subject: [PATCH] Update api.py --- api/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/api.py b/api/api.py index b4ae090..3918079 100644 --- a/api/api.py +++ b/api/api.py @@ -24,8 +24,8 @@ class Client: regex = r'digital_comic_id : "(([0-9]{5}))"' return re.search(regex, r.text).group(1) - def make_call(self, epoint, json=None, params=None): - r = self.session.get(self.base+epoint, json=json, params=params) + def make_call(self, epoint, params=None): + r = self.session.get(self.base+epoint, params=params) r.raise_for_status() return r