fix(pterodactyl): alphabetized a dict and the docs
All checks were successful
Actions / Lint Code (Ruff & Pylint) (pull_request) Successful in 18s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 22s

This commit is contained in:
SeaswimmerTheFsh 2024-03-01 15:28:14 -05:00
parent dab56bed94
commit 95bf863f7e
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
2 changed files with 2 additions and 2 deletions

View file

@ -86,9 +86,9 @@ class Pterodactyl(commands.Cog):
placeholders = {
"C": str(message.author.color),
"D": message.author.discriminator,
"I": str(message.author.id),
"M": message.content,
"N": message.author.display_name,
"I": str(message.author.id),
"U": message.author.name,
}
for key, value in placeholders.items():