1
0
Fork 0
mirror of synced 2024-06-29 19:50:25 +12:00

Changes made for pep8

This commit is contained in:
phxntxm 2016-08-12 12:37:29 -05:00
parent 20f6c2bcc3
commit f8b767eb1c

View file

@ -79,7 +79,8 @@ class Mod:
"""This command can be used to print the current allowed permissions on a specific command
This supports groups as well as subcommands; pass no argument to print a list of available permissions"""
if command is None:
await self.bot.say("Valid permissions are: ```\n{}```".format("\n".join("{}".format(i) for i in valid_perms)))
await self.bot.say(
"Valid permissions are: ```\n{}```".format("\n".join("{}".format(i) for i in valid_perms)))
return
custom_perms = config.getContent('custom_permissions') or {}