Skip to content

Commit fe7d267

Browse files
committed
chore: better descriptions
1 parent e2f9ec4 commit fe7d267

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/components/extras.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Extras(commands.Cog):
1414
def __init__(self, bot: "GhosttyBot") -> None:
1515
self.bot = bot
1616

17-
@commands.command(name="sync", description="Accept a pending tester invite.")
17+
@commands.command(name="sync", description="Sync command tree.")
1818
@commands.guild_only()
1919
async def sync(self, ctx: commands.Context[Any]) -> None:
2020
assert not is_dm(ctx.author)
@@ -24,7 +24,9 @@ async def sync(self, ctx: commands.Context[Any]) -> None:
2424
await self.bot.tree.sync()
2525
await try_dm(ctx.author, "Command tree synced.")
2626

27-
@dc.app_commands.command(name="status")
27+
@dc.app_commands.command(
28+
name="status", description="Export Ghostty Bot Status Message"
29+
)
2830
async def ghostty_bot_status(self, interaction: dc.Interaction) -> None:
2931
user = interaction.user
3032
member = self.bot.ghostty_guild.get_member(user.id)

0 commit comments

Comments
 (0)