Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.

Commit 5898a37

Browse files
author
Jeff Ammons
committed
Remove spurious change unrelated to PEP8
1 parent 25ce082 commit 5898a37

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

rtmbot.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ def output(self):
6868
message = output[1].encode('ascii', 'ignore')
6969
channel.send_message("{}".format(message))
7070
limiter = True
71-
# TODO: check goal: no sleep for 1st channel, sleep of all after ?
72-
# TODO: find out how to safely encode stuff if needed :(
73-
# message = output[1].encode('utf-8','ignore')
74-
channel.send_message(output[1]) # message
7571

7672
def crons(self):
7773
for plugin in self.bot_plugins:
@@ -95,7 +91,7 @@ class Plugin(object):
9591

9692
def __init__(self, name, plugin_config=None):
9793
if plugin_config is None:
98-
plugin_config = {} # TODO: is this necessary?
94+
plugin_config = {} # TODO: is this variable necessary?
9995
self.name = name
10096
self.jobs = []
10197
self.module = __import__(name)

0 commit comments

Comments
 (0)