We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e88ed commit 16816f3Copy full SHA for 16816f3
cogs/utility.py
@@ -914,9 +914,7 @@ def fmt(val):
914
for i, (current_key, info) in enumerate(config_help.items()):
915
if current_key == key:
916
index = i
917
- embed = discord.Embed(
918
- title=f"{current_key}", color=self.bot.main_color
919
- )
+ embed = discord.Embed(title=f"{current_key}", color=self.bot.main_color)
920
embed.add_field(name="Default:", value=fmt(info["default"]), inline=False)
921
embed.add_field(name="Information:", value=fmt(info["description"]), inline=False)
922
if info["examples"]:
0 commit comments