Skip to content

Commit 39967e4

Browse files
authored
Merge pull request #112 from paulosgf/styleupdate
Update #3 - Style adjusts on core plugins
2 parents 40ff886 + a9e95a2 commit 39967e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/honeybot/plugins/core/joins/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Plugin:
1515
def __init__(self):
1616
pass
1717

18-
def run(self, incoming, methods, info, bot_info):
18+
def run(self, methods, info, bot_info):
1919
try:
2020
# Parse the user ID from info['prefix']
2121
raw_user = info["prefix"]

src/honeybot/plugins/core/log/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Plugin:
3131
def __init__(self):
3232
pass
3333

34-
def run(self, incoming, methods, info, bot_info):
34+
def run(self, methods, info, bot_info):
3535
msgs = info["args"][1:]
3636
try:
3737
if info["command"] == "PRIVMSG":

src/honeybot/plugins/core/uptime/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __convert_time(start_time):
3636
msg = "Bot has been up for {0} hr, {1} min, and {2} sec.".format(hrs, mins, sec)
3737
return msg
3838

39-
def run(self, incoming, methods, info, bot_info):
39+
def run(self, methods, info, bot_info):
4040
try:
4141
if info["command"] == "PRIVMSG" and info["args"][1] == ".uptime":
4242
start_time = bot_info["time"]

0 commit comments

Comments
 (0)