Skip to content
Snippets Groups Projects
Commit 99aa440f authored by Alexander Cherniuk's avatar Alexander Cherniuk
Browse files

Unify the tuple notation style

parent a26a5783
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ class CustomChatCommands(CommandContainer):
"""
AUTOMATIC = True
HOSTS = (ChatCommands,)
HOSTS = ChatCommands,
@command("squal", "bawl")
def sing(self):
......@@ -99,7 +99,7 @@ class CustomPrivateChatCommands(CommandContainer):
"""
AUTOMATIC = True
HOSTS = (PrivateChatCommands,)
HOSTS = PrivateChatCommands,
@command
@doc(_("The same as using a doc-string, except it supports translation"))
......@@ -114,7 +114,7 @@ class CustomGroupChatCommands(CommandContainer):
"""
AUTOMATIC = True
HOSTS = (GroupChatCommands,)
HOSTS = GroupChatCommands,
@command
def fetch(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment