Skip to content

Commit

Permalink
Merge pull request #112 from paulosgf/styleupdate
Browse files Browse the repository at this point in the history
Update #3
- Style adjusts on core plugins
  • Loading branch information
paulosgf authored Jun 4, 2022
2 parents 40ff886 + a9e95a2 commit 39967e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/honeybot/plugins/core/joins/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Plugin:
def __init__(self):
pass

def run(self, incoming, methods, info, bot_info):
def run(self, methods, info, bot_info):
try:
# Parse the user ID from info['prefix']
raw_user = info["prefix"]
Expand Down
2 changes: 1 addition & 1 deletion src/honeybot/plugins/core/log/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Plugin:
def __init__(self):
pass

def run(self, incoming, methods, info, bot_info):
def run(self, methods, info, bot_info):
msgs = info["args"][1:]
try:
if info["command"] == "PRIVMSG":
Expand Down
2 changes: 1 addition & 1 deletion src/honeybot/plugins/core/uptime/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __convert_time(start_time):
msg = "Bot has been up for {0} hr, {1} min, and {2} sec.".format(hrs, mins, sec)
return msg

def run(self, incoming, methods, info, bot_info):
def run(self, methods, info, bot_info):
try:
if info["command"] == "PRIVMSG" and info["args"][1] == ".uptime":
start_time = bot_info["time"]
Expand Down

0 comments on commit 39967e4

Please sign in to comment.