fix(pterodactyl): added an f string
All checks were successful
Actions / Build Documentation (MkDocs) (push) Successful in 36s
Actions / Lint Code (Ruff & Pylint) (push) Successful in 54s

This commit is contained in:
Seaswimmer 2024-04-15 17:45:43 -04:00
parent 2b7f320d2a
commit 285257eed5
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -560,7 +560,7 @@ class Pterodactyl(commands.Cog):
await view.wait()
if view.result is True:
del blacklist[name]
await msg.edit(content="Removed `{name}` from the regex blacklist.")
await msg.edit(content=f"Removed `{name}` from the regex blacklist.")
else:
await msg.edit(content="Cancelled.")
else: