From 5898a379976bfa6bcd8a291229e7d0d800bea03c Mon Sep 17 00:00:00 2001 From: Jeff Ammons Date: Fri, 15 Apr 2016 14:32:19 -0700 Subject: [PATCH] Remove spurious change unrelated to PEP8 --- rtmbot.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rtmbot.py b/rtmbot.py index c23156a..4b77249 100755 --- a/rtmbot.py +++ b/rtmbot.py @@ -68,10 +68,6 @@ class RtmBot(object): message = output[1].encode('ascii', 'ignore') channel.send_message("{}".format(message)) limiter = True - # TODO: check goal: no sleep for 1st channel, sleep of all after ? - # TODO: find out how to safely encode stuff if needed :( - # message = output[1].encode('utf-8','ignore') - channel.send_message(output[1]) # message def crons(self): for plugin in self.bot_plugins: @@ -95,7 +91,7 @@ class Plugin(object): def __init__(self, name, plugin_config=None): if plugin_config is None: - plugin_config = {} # TODO: is this necessary? + plugin_config = {} # TODO: is this variable necessary? self.name = name self.jobs = [] self.module = __import__(name)