From f8927b194c77e7ae5e511c2bc0e6342a5d8a7257 Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Tue, 27 Aug 2019 23:32:56 -0400 Subject: [PATCH] remove old self.matches declarations --- ASCII/plugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index ec57288..81ceacd 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -1610,7 +1610,6 @@ class ASCII(callbacks.Plugin): speed = 'fast' file = requests.get("http://wttr.in/{0}".format(location)) output = file.content.decode() - self.matches = {} output = self.ansi2irc(output) output = re.sub('⚡', '☇ ', output) output = re.sub('‘‘', '‘ ', output) @@ -1664,7 +1663,6 @@ class ASCII(callbacks.Plugin): sub = 'usd' if not coin: coin = '' - self.matches= {} file = requests.get("http://{0}.rate.sx/{1}".format(sub, coin)) output = file.content.decode() output = self.ansi2irc(output)