From 59ca68969cc6ae7b4656cccce515f143342d2a68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Sun, 29 Apr 2018 15:10:12 +0200 Subject: [PATCH] Add id argument to TwitchBot.delete() method --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 5007aed..1cb9a67 100644 --- a/bot.py +++ b/bot.py @@ -85,8 +85,8 @@ class TwitchBot(irc.bot.SingleServerIRCBot): r.raise_for_status() return r.json() - def delete(self): - r = requests.post('{0}/quotes'.format(self.api_url), + def delete(self, id): + r = requests.post('{0}/quote/{1}'.format(self.api_url, id), headers={'X-Quotes-API-Key': self.api_key}) r.raise_for_status() return r.json()