Unify the tuple notation style
This commit is contained in:
parent
a26a578396
commit
99aa440fbf
|
@ -76,7 +76,7 @@ class CustomChatCommands(CommandContainer):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
AUTOMATIC = True
|
AUTOMATIC = True
|
||||||
HOSTS = (ChatCommands,)
|
HOSTS = ChatCommands,
|
||||||
|
|
||||||
@command("squal", "bawl")
|
@command("squal", "bawl")
|
||||||
def sing(self):
|
def sing(self):
|
||||||
|
@ -99,7 +99,7 @@ class CustomPrivateChatCommands(CommandContainer):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
AUTOMATIC = True
|
AUTOMATIC = True
|
||||||
HOSTS = (PrivateChatCommands,)
|
HOSTS = PrivateChatCommands,
|
||||||
|
|
||||||
@command
|
@command
|
||||||
@doc(_("The same as using a doc-string, except it supports translation"))
|
@doc(_("The same as using a doc-string, except it supports translation"))
|
||||||
|
@ -114,7 +114,7 @@ class CustomGroupChatCommands(CommandContainer):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
AUTOMATIC = True
|
AUTOMATIC = True
|
||||||
HOSTS = (GroupChatCommands,)
|
HOSTS = GroupChatCommands,
|
||||||
|
|
||||||
@command
|
@command
|
||||||
def fetch(self):
|
def fetch(self):
|
||||||
|
|
Loading…
Reference in New Issue